kjelsrud.dev/node_modules/@vscode/emmet-helper/lib/cjs/configCompat.d.ts
2023-07-19 21:31:30 +02:00

15 lines
356 B
TypeScript

export interface SnippetsMap {
[name: string]: string;
}
/**
* Parses raw snippets definitions with possibly multiple keys into a plan
* snippet map
*/
export declare function parseSnippets(snippets: SnippetsMap): SnippetsMap;
/**
* List of all known syntaxes
*/
export declare const syntaxes: {
markup: string[];
stylesheet: string[];
};