doc.yeswiki.pro/node_modules/vscode-textmate/release/tests/themedTokenizer.d.ts

7 lines
230 B
TypeScript
Raw Normal View History

2023-05-20 19:37:42 +03:00
import { IGrammar } from '../main';
export interface IThemedToken {
content: string;
color: string;
}
export declare function tokenizeWithTheme(colorMap: string[], fileContents: string, grammar: IGrammar): IThemedToken[];