base.d.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. export type Format = (string: string) => string;
  2. export const reset: Format;
  3. export const bold: Format;
  4. export const dim: Format;
  5. export const italic: Format;
  6. export const underline: Format;
  7. export const overline: Format;
  8. export const inverse: Format;
  9. export const hidden: Format;
  10. export const strikethrough: Format;
  11. export const black: Format;
  12. export const red: Format;
  13. export const green: Format;
  14. export const yellow: Format;
  15. export const blue: Format;
  16. export const magenta: Format;
  17. export const cyan: Format;
  18. export const white: Format;
  19. export const gray: Format;
  20. export const bgBlack: Format;
  21. export const bgRed: Format;
  22. export const bgGreen: Format;
  23. export const bgYellow: Format;
  24. export const bgBlue: Format;
  25. export const bgMagenta: Format;
  26. export const bgCyan: Format;
  27. export const bgWhite: Format;
  28. export const bgGray: Format;
  29. export const redBright: Format;
  30. export const greenBright: Format;
  31. export const yellowBright: Format;
  32. export const blueBright: Format;
  33. export const magentaBright: Format;
  34. export const cyanBright: Format;
  35. export const whiteBright: Format;
  36. export const bgRedBright: Format;
  37. export const bgGreenBright: Format;
  38. export const bgYellowBright: Format;
  39. export const bgBlueBright: Format;
  40. export const bgMagentaBright: Format;
  41. export const bgCyanBright: Format;
  42. export const bgWhiteBright: Format;