您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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