8f31902709b8056d7196e9d27892342487a9221ad0c2cc834ddfb780c9cc24a2d6914e47c07996eb723a1419f25ada06cb66b12e2dbaa03409371d2c67b326 1013 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. export type Formatter = (input: string | number | null | undefined) => string
  2. export interface Colors {
  3. isColorSupported: boolean
  4. reset: Formatter
  5. bold: Formatter
  6. dim: Formatter
  7. italic: Formatter
  8. underline: Formatter
  9. inverse: Formatter
  10. hidden: Formatter
  11. strikethrough: Formatter
  12. black: Formatter
  13. red: Formatter
  14. green: Formatter
  15. yellow: Formatter
  16. blue: Formatter
  17. magenta: Formatter
  18. cyan: Formatter
  19. white: Formatter
  20. gray: Formatter
  21. bgBlack: Formatter
  22. bgRed: Formatter
  23. bgGreen: Formatter
  24. bgYellow: Formatter
  25. bgBlue: Formatter
  26. bgMagenta: Formatter
  27. bgCyan: Formatter
  28. bgWhite: Formatter
  29. blackBright: Formatter
  30. redBright: Formatter
  31. greenBright: Formatter
  32. yellowBright: Formatter
  33. blueBright: Formatter
  34. magentaBright: Formatter
  35. cyanBright: Formatter
  36. whiteBright: Formatter
  37. bgBlackBright: Formatter
  38. bgRedBright: Formatter
  39. bgGreenBright: Formatter
  40. bgYellowBright: Formatter
  41. bgBlueBright: Formatter
  42. bgMagentaBright: Formatter
  43. bgCyanBright: Formatter
  44. bgWhiteBright: Formatter
  45. }