fix: resolve cli-highlight types and runtime info
This commit is contained in:
10
src/types/cli-highlight.d.ts
vendored
Normal file
10
src/types/cli-highlight.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user