Files
Basalt2/node_modules/vscode-textmate/release/tests/themedTokenizer.d.ts
Robert Jelic b0a4a6da9c Vitepress
2025-02-10 06:53:23 +01:00

7 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[];