openclaw / src /types /cli-highlight.d.ts
quinnz's picture
change port 18789 to 7860
3509093
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;
}