4 lines
288 B
TypeScript
4 lines
288 B
TypeScript
declare const colorsArr: readonly ["red", "bright", "dim", "underscore", "blink", "reverse", "hidden", "black", "green", "yellow", "blue", "magenta", "cyan", "white", "gray"];
|
|
export default function colors(text: string, type: (typeof colorsArr)[number], bg: boolean): string;
|
|
export {};
|