@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
11 lines (10 loc) • 932 B
TypeScript
import { SWRResponse } from 'swr';
export declare const FALLBACK_LANG = "txt";
declare const highlightCache: Map<string, string>;
declare const MD5_LENGTH_THRESHOLD = 10000;
declare const loadShiki: () => Promise<(code: string, options: import("@shikijs/types").CodeToHastOptions<import("shiki/dist/langs.mjs").BundledLanguage, import("shiki/dist/themes.mjs").BundledTheme>) => Promise<string>>;
declare const shikiPromise: Promise<(code: string, options: import("@shikijs/types").CodeToHastOptions<import("shiki/dist/langs.mjs").BundledLanguage, import("shiki/dist/themes.mjs").BundledTheme>) => Promise<string>>;
declare const escapeHtml: (str: string) => string;
export declare const useHighlight: (text: string, lang: string, enableTransformer?: boolean) => SWRResponse<string, Error>;
export { default as languageMap } from './languageMap';
export { escapeHtml, highlightCache, loadShiki, MD5_LENGTH_THRESHOLD, shikiPromise };