123456789101112131415 |
- import { Minimatch } from 'minimatch';
- import { Path } from 'path-scurry';
- import { GlobWalkerOpts } from './walker.js';
- /**
- * Class used to process ignored patterns
- */
- export declare class Ignore {
- relative: Minimatch[];
- relativeChildren: Minimatch[];
- absolute: Minimatch[];
- absoluteChildren: Minimatch[];
- constructor(ignored: string[], { nobrace, nocase, noext, noglobstar, platform, }: GlobWalkerOpts);
- ignored(p: Path): boolean;
- childrenIgnored(p: Path): boolean;
- }
|