/snap/node/11782/lib/node_modules/npm/node_modules/glob/dist/esm
NameSizeModeActions
bin.d.mts650644editdlrm
bin.d.mts.map1050644editdlrm
bin.mjs126450755editdlrm
bin.mjs.map185770644editdlrm
glob.d.ts148080644editdlrm
glob.d.ts.map40380644editdlrm
glob.js83390644editdlrm
glob.js.map283770644editdlrm
has-magic.d.ts7600644editdlrm
has-magic.d.ts.map2580644editdlrm
has-magic.js9170644editdlrm
has-magic.js.map14950644editdlrm
ignore.d.ts8130644editdlrm
ignore.d.ts.map8860644editdlrm
ignore.js41010644editdlrm
ignore.js.map75140644editdlrm
index.d.ts62110644editdlrm
index.d.ts.map40850644editdlrm
index.js16470644editdlrm
index.js.map84040644editdlrm
package.json230644editdlrm
pattern.d.ts21170644editdlrm
pattern.d.ts.map13140644editdlrm
pattern.js71610644editdlrm
pattern.js.map134070644editdlrm
processor.d.ts21360644editdlrm
processor.d.ts.map17480644editdlrm
processor.js104530644editdlrm
processor.js.map190370644editdlrm
walker.d.ts37800644editdlrm
walker.d.ts.map41950644editdlrm
walker.js125690644editdlrm
walker.js.map279530644editdlrm
Edit: /snap/node/11782/lib/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts (2117B)
import { GLOBSTAR } from 'minimatch'; export type MMPattern = string | RegExp | typeof GLOBSTAR; export type PatternList = [p: MMPattern, ...rest: MMPattern[]]; export type UNCPatternList = [ p0: '', p1: '', p2: string, p3: string, ...rest: MMPattern[] ]; export type DrivePatternList = [p0: string, ...rest: MMPattern[]]; export type AbsolutePatternList = [p0: '', ...rest: MMPattern[]]; export type GlobList = [p: string, ...rest: string[]]; /** * An immutable-ish view on an array of glob parts and their parsed * results */ export declare class Pattern { #private; readonly length: number; constructor(patternList: MMPattern[], globList: string[], index: number, platform: NodeJS.Platform); /** * The first entry in the parsed list of patterns */ pattern(): MMPattern; /** * true of if pattern() returns a string */ isString(): boolean; /** * true of if pattern() returns GLOBSTAR */ isGlobstar(): boolean; /** * true if pattern() returns a regexp */ isRegExp(): boolean; /** * The /-joined set of glob parts that make up this pattern */ globString(): string; /** * true if there are more pattern parts after this one */ hasMore(): boolean; /** * The rest of the pattern after this part, or null if this is the end */ rest(): Pattern | null; /** * true if the pattern represents a //unc/path/ on windows */ isUNC(): boolean; /** * True if the pattern starts with a drive letter on Windows */ isDrive(): boolean; /** * True if the pattern is rooted on an absolute path */ isAbsolute(): boolean; /** * consume the root of the pattern, and return it */ root(): string; /** * Check to see if the current globstar pattern is allowed to follow * a symbolic link. */ checkFollowGlobstar(): boolean; /** * Mark that the current globstar pattern is following a symbolic link */ markFollowGlobstar(): boolean; } //# sourceMappingURL=pattern.d.ts.map