localbox/chalk.d.ts
2025-03-15 09:51:20 -05:00

10 lines
411 B
TypeScript

/*
Typescript doesn't seem to recognize the functions of the chalk_deno module, so some are specified here to avoid type warnings.
*/
declare module "https://deno.land/x/chalk_deno@v4.1.1-deno/source/index.js" {
export function red(text: string): string;
export function green(text: string): string;
export function blue(text: string): string;
export function gray(text: string): string;
}