13 lines
293 B
TypeScript
13 lines
293 B
TypeScript
interface Options {
|
|
caption?: string;
|
|
firstLine?: number;
|
|
isPreprocess?: boolean;
|
|
lang?: string;
|
|
lineNumber?: boolean;
|
|
mark?: string;
|
|
tab?: string;
|
|
stripIndent?: boolean;
|
|
}
|
|
declare function PrismUtil(str: string, options?: Options): string;
|
|
export = PrismUtil;
|