astro-ghostcms/.pnpm-store/v3/files/f7/e498753be204121d61dd9bc0150...

16 lines
356 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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[];
};