Server IP : 68.65.120.251 / Your IP : 3.138.178.107 [ Web Server : LiteSpeed System : Linux server105.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : travtpib ( 6521) PHP Version : 7.4.33 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/alt-nodejs22/root/usr/lib/node_modules/npm/node_modules/glob/dist/commonjs/ |
Upload File : |
import { Minimatch, MinimatchOptions } from 'minimatch'; import { Path } from 'path-scurry'; import { GlobWalkerOpts } from './walker.js'; export interface IgnoreLike { ignored?: (p: Path) => boolean; childrenIgnored?: (p: Path) => boolean; add?: (ignore: string) => void; } /** * Class used to process ignored patterns */ export declare class Ignore implements IgnoreLike { relative: Minimatch[]; relativeChildren: Minimatch[]; absolute: Minimatch[]; absoluteChildren: Minimatch[]; platform: NodeJS.Platform; mmopts: MinimatchOptions; constructor(ignored: string[], { nobrace, nocase, noext, noglobstar, platform, }: GlobWalkerOpts); add(ign: string): void; ignored(p: Path): boolean; childrenIgnored(p: Path): boolean; } //# sourceMappingURL=ignore.d.ts.map