Files
chesco/node_modules/@astrojs/prism/dist/loadLanguages-workerd.d.ts
T

13 lines
381 B
TypeScript

/**
* Loads the given languages and adds them to the current Prism instance.
*
* If no languages are provided, __all__ Prism languages will be loaded.
*
* @param {string|string[]} [languages]
* @returns {Promise<void>}
*/
export declare function loadLanguages(languages: string | string[]): Promise<void>;
export declare namespace loadLanguages {
var silent: boolean;
}