1234567891011121314151617181920212223242526272829303132333435363738394041 |
- interface Ignore {
-
- add(pattern: string | Ignore): Ignore
-
- add(patterns: (string | Ignore)[]): Ignore
-
- filter(paths: string[]): string[]
-
- createFilter(): (path: string) => boolean
-
- ignores(pathname: string): boolean
- }
- declare function ignore(): Ignore
- export default ignore
|