Files
Basalt2/node_modules/vscode-textmate/release/tests/themedTokenizer.d.ts
Robert Jelic 31787b0e9b Fix
2025-02-16 18:04:24 +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[];