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

12345678910111213141516171819202122232425262728
  1. import {IOptions} from 'minimatch';
  2. declare namespace multimatch {
  3. type Options = Readonly<IOptions>;
  4. }
  5. /**
  6. Extends [`minimatch.match()`](https://github.com/isaacs/minimatch#minimatchmatchlist-pattern-options) with support for multiple patterns.
  7. @param paths - Paths to match against.
  8. @param patterns - Globbing patterns to use. For example: `['*', '!cake']`. See supported [`minimatch` patterns](https://github.com/isaacs/minimatch#usage).
  9. @returns The matching paths.
  10. @example
  11. ```
  12. import multimatch = require('multimatch');
  13. multimatch(['unicorn', 'cake', 'rainbows'], ['*', '!cake']);
  14. //=> ['unicorn', 'rainbows']
  15. ```
  16. */
  17. declare function multimatch(
  18. paths: string | string[],
  19. patterns: string | string[],
  20. options?: multimatch.Options
  21. ): string[];
  22. export = multimatch;