Interface GlobWalkerOpts

interface GlobWalkerOpts {
    absolute?: boolean;
    allowWindowsEscape?: boolean;
    cwd?: string | URL;
    dot?: boolean;
    dotRelative?: boolean;
    follow?: boolean;
    ignore?: string | string[] | IgnoreLike;
    includeChildMatches?: boolean;
    mark?: boolean;
    matchBase?: boolean;
    maxDepth?: number;
    nobrace?: boolean;
    nocase?: boolean;
    nodir?: boolean;
    noext?: boolean;
    noglobstar?: boolean;
    platform?: Platform;
    posix?: boolean;
    realpath?: boolean;
    root?: string;
    signal?: AbortSignal;
    stat?: boolean;
    windowsPathsNoEscape?: boolean;
    withFileTypes?: boolean;
}

Properties

absolute?: boolean
allowWindowsEscape?: boolean
cwd?: string | URL
dot?: boolean
dotRelative?: boolean
follow?: boolean
ignore?: string | string[] | IgnoreLike
includeChildMatches?: boolean
mark?: boolean
matchBase?: boolean
maxDepth?: number
nobrace?: boolean
nocase?: boolean
nodir?: boolean
noext?: boolean
noglobstar?: boolean
platform?: Platform
posix?: boolean
realpath?: boolean
root?: string
signal?: AbortSignal
stat?: boolean
windowsPathsNoEscape?: boolean
withFileTypes?: boolean