glob
    Preparing search index...

    Variable streamConst

    stream: {
        (
            pattern: string | string[],
            options: GlobOptionsWithFileTypesFalse,
        ): Minipass<string, string>;
        (
            pattern: string | string[],
            options: GlobOptionsWithFileTypesTrue,
        ): Minipass<Path, Path>;
        (
            pattern: string | string[],
            options?: GlobOptionsWithFileTypesUnset,
        ): Minipass<string, string>;
        (
            pattern: string | string[],
            options: GlobOptions,
        ):
            | Minipass<Path, Path, Events<Path>>
            | Minipass<string, string, Events<string>>;
    } & {
        sync: {
            (
                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>>;
        };
    } = ...

    Type declaration

      • (
            pattern: string | string[],
            options: GlobOptionsWithFileTypesFalse,
        ): Minipass<string, string>
      • Return a stream that emits all the strings or Path objects and then emits end when completed.

        Parameters

        Returns Minipass<string, string>

      • (
            pattern: string | string[],
            options: GlobOptionsWithFileTypesTrue,
        ): Minipass<Path, Path>
      • Return a stream that emits all the strings or Path objects and then emits end when completed.

        Parameters

        Returns Minipass<Path, Path>

      • (
            pattern: string | string[],
            options?: GlobOptionsWithFileTypesUnset,
        ): Minipass<string, string>
      • Return a stream that emits all the strings or Path objects and then emits end when completed.

        Parameters

        Returns Minipass<string, string>

      • (
            pattern: string | string[],
            options: GlobOptions,
        ):
            | Minipass<Path, Path, Events<Path>>
            | Minipass<string, string, Events<string>>
      • Return a stream that emits all the strings or Path objects and then emits end when completed.

        Parameters

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

    • sync: {
          (
              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>>;
      }