mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-23 13:01:08 +03:00
11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
declare module "cli-highlight" {
|
|
export type HighlightOptions = {
|
|
language?: string;
|
|
theme?: unknown;
|
|
ignoreIllegals?: boolean;
|
|
};
|
|
|
|
export function highlight(code: string, options?: HighlightOptions): string;
|
|
export function supportsLanguage(language: string): boolean;
|
|
}
|