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.

10 lines
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. }