This commit is contained in:
Benjamin Toby
2025-01-16 07:12:45 +01:00
parent 222d1a4372
commit 219db3d88e
25 changed files with 631 additions and 21 deletions
+3
View File
@@ -0,0 +1,3 @@
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 {};