augment-vir - v31.47.0
    Preparing search index...

    Type Alias GrepOptions<CountOnly>

    GrepOptions: PartialWithUndefined<
        {
            binary: boolean;
            cwd: string;
            excludeDirs: string[];
            excludePatterns: string[];
            followSymLinks: boolean;
            ignoreCase: boolean;
            includeFiles: string[];
            invertMatch: boolean;
            matchType: RequireExactlyOne<{ lineRegExp: true; wordRegExp: true }>;
            maxCount: number;
            output: RequireExactlyOne<{ countOnly: CountOnly; filesOnly: true }>;
            patternSyntax: RequireExactlyOne<
                { basicRegExp: true; extendedRegExp: true; fixedStrings: true },
            >;
            printCommand: boolean;
            recursive: boolean;
        },
    >

    Optional options for grep.

    Type Parameters

    • CountOnly extends boolean = false