markshell
Version:
markshell allows you to output any markdown file formatted and style to the console
22 lines (21 loc) • 612 B
TypeScript
export var theme: any;
export var themeTokenKeys: string[];
/**
*
* @param {string} source
* @param {string} language
* @param {sourceTheme} outTheme
*/
declare function _highlight(source: string, language: string, outTheme: sourceTheme): string;
type sourceTheme = string;
declare namespace sourceTheme {
const COY: string;
const DARK: string;
const FUNKY: string;
const OKAIDIA: string;
const PRISM: string;
const SOLARIZE: string;
const TOMORROW: string;
const TWILIGHT: string;
}
export { _highlight as highlight, sourceTheme as themes, sourceTheme as availableThemes };