Sha256: ccf160a6ae2a11d6d8bf91d9758fa247c98e3550e0b972f4dbe1dba48457e228
Contents?: true
Size: 670 Bytes
Versions: 46
Compression:
Stored size: 670 Bytes
Contents
import { Minimatch } from 'minimatch'; import { Path } from 'path-scurry'; import { GlobWalkerOpts } from './walker.js'; export interface IgnoreLike { ignored?: (p: Path) => boolean; childrenIgnored?: (p: Path) => boolean; } /** * Class used to process ignored patterns */ export declare class Ignore implements IgnoreLike { 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; } //# sourceMappingURL=ignore.d.ts.map
Version data entries
46 entries across 23 versions & 3 rubygems