Spaces:
Sleeping
Sleeping
File size: 292 Bytes
fb4d8fe | 1 2 3 4 5 6 7 8 9 10 11 | 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;
}
|