Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 1.3KB

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