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 744B

12345678910111213141516171819202122232425262728293031323334353637
  1. declare namespace ansiRegex {
  2. interface Options {
  3. /**
  4. Match only the first ANSI escape.
  5. @default false
  6. */
  7. onlyFirst: boolean;
  8. }
  9. }
  10. /**
  11. Regular expression for matching ANSI escape codes.
  12. @example
  13. ```
  14. import ansiRegex = require('ansi-regex');
  15. ansiRegex().test('\u001B[4mcake\u001B[0m');
  16. //=> true
  17. ansiRegex().test('cake');
  18. //=> false
  19. '\u001B[4mcake\u001B[0m'.match(ansiRegex());
  20. //=> ['\u001B[4m', '\u001B[0m']
  21. '\u001B[4mcake\u001B[0m'.match(ansiRegex({onlyFirst: true}));
  22. //=> ['\u001B[4m']
  23. '\u001B]8;;https://github.com\u0007click\u001B]8;;\u0007'.match(ansiRegex());
  24. //=> ['\u001B]8;;https://github.com\u0007', '\u001B]8;;\u0007']
  25. ```
  26. */
  27. declare function ansiRegex(options?: ansiRegex.Options): RegExp;
  28. export = ansiRegex;