kjelsrud.dev/node_modules/vscode-textmate/release/tests/themedTokenizer.d.ts
2023-07-19 21:31:30 +02:00

6 lines
230 B
TypeScript

import { IGrammar } from '../main';
export interface IThemedToken {
content: string;
color: string;
}
export declare function tokenizeWithTheme(colorMap: string[], fileContents: string, grammar: IGrammar): IThemedToken[];