glob
    Preparing search index...

    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;
    }
    Index

    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