new-Space / src /types /cli-highlight.d.ts
OpenClaw Deploy
Deploy OpenClaw to Hugging Face
9dc6089
Raw
History Blame Contribute Delete
292 Bytes
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;
}