OpenClawBot / src /types /cli-highlight.d.ts
darkfire514's picture
Upload 2526 files
fb4d8fe verified
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;
}