uni-ticket-system/node_modules/licia/highlight.d.ts
2023-12-05 10:11:10 +08:00

14 lines
245 B
TypeScript

declare function highlight(
str: string,
lang?: string,
style?: {
comment?: string;
string?: string;
number?: string;
keyword?: string;
operator?: string;
}
): string;
export = highlight;