/** * Version of Shiki whose grammars and themes are fetched at runtime. Must stay in sync with the * version bundled into `dist/shiki-engine.js`, because grammar and theme payloads are only * guaranteed to be compatible with the matching engine. */ export const SHIKI_VERSION: "4.4.3"; /** * Available syntax highlighting languages, sorted by display name. * @type {{ id: string, name: string, aliases?: string[] }[]} */ export const LANGUAGES: { id: string; name: string; aliases?: string[]; }[]; /** * Available syntax highlighting themes. * @type {{ id: string, displayName: string, type: string }[]} */ export const THEMES: { id: string; displayName: string; type: string; }[];