UNPKG

352 BTypeScriptView Raw
1interface Options {
2 autoDetect?: boolean;
3 caption?: string;
4 firstLine?: number;
5 gutter?: boolean;
6 hljs?: boolean;
7 lang?: string;
8 languageAttr?: boolean;
9 mark?: number[];
10 tab?: string;
11 wrap?: boolean;
12}
13declare function highlightUtil(str: string, options?: Options): string;
14export = highlightUtil;