glob
    Preparing search index...

    Variable streamSyncConst

    streamSync: {
        (
            pattern: string | string[],
            options: GlobOptionsWithFileTypesTrue,
        ): Minipass<Path, Path>;
        (
            pattern: string | string[],
            options: GlobOptionsWithFileTypesFalse,
        ): Minipass<string, string>;
        (
            pattern: string | string[],
            options: GlobOptionsWithFileTypesUnset,
        ): Minipass<string, string>;
        (
            pattern: string | string[],
            options: GlobOptions,
        ):
            | Minipass<Path, Path, Events<Path>>
            | Minipass<string, string, Events<string>>;
    } = globStreamSync

    Type declaration

      • (
            pattern: string | string[],
            options: GlobOptionsWithFileTypesTrue,
        ): Minipass<Path, Path>
      • Syncronous form of globStream. Will read all the matches as fast as you consume them, even all in a single tick if you consume them immediately, but will still respond to backpressure if they're not consumed immediately.

        Parameters

        Returns Minipass<Path, Path>

      • (
            pattern: string | string[],
            options: GlobOptionsWithFileTypesFalse,
        ): Minipass<string, string>
      • Syncronous form of globStream. Will read all the matches as fast as you consume them, even all in a single tick if you consume them immediately, but will still respond to backpressure if they're not consumed immediately.

        Parameters

        Returns Minipass<string, string>

      • (
            pattern: string | string[],
            options: GlobOptionsWithFileTypesUnset,
        ): Minipass<string, string>
      • Syncronous form of globStream. Will read all the matches as fast as you consume them, even all in a single tick if you consume them immediately, but will still respond to backpressure if they're not consumed immediately.

        Parameters

        Returns Minipass<string, string>

      • (
            pattern: string | string[],
            options: GlobOptions,
        ):
            | Minipass<Path, Path, Events<Path>>
            | Minipass<string, string, Events<string>>
      • Syncronous form of globStream. Will read all the matches as fast as you consume them, even all in a single tick if you consume them immediately, but will still respond to backpressure if they're not consumed immediately.

        Parameters

        Returns Minipass<Path, Path, Events<Path>> | Minipass<string, string, Events<string>>