Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

10 rader
278 B

  1. declare module "ignore" {
  2. namespace ignore {
  3. interface Ignore {
  4. add(patterns: string | Array<string> | Ignore): Ignore;
  5. filter(paths: Array<string>): Array<string>;
  6. }
  7. }
  8. function ignore(): ignore.Ignore;
  9. export = ignore;
  10. }