Files
blog/node_modules/hexo-util/dist/prism.d.ts
2025-07-16 16:30:56 +00:00

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;