Sha256: 36a63fcace763fdd37eb00d000edb0712ed1a9f3f48c556edf505f9422d53354
Contents?: true
Size: 1.86 KB
Versions: 26
Compression:
Stored size: 1.86 KB
Contents
/// <reference types="node" /> import { Queue } from "./api/queue"; export type Counts = { files: number; directories: number; /** * @deprecated use `directories` instead. Will be removed in v7.0. */ dirs: number; }; export type Group = { directory: string; files: string[]; /** * @deprecated use `directory` instead. Will be removed in v7.0. */ dir: string; }; export type GroupOutput = Group[]; export type OnlyCountsOutput = Counts; export type PathsOutput = string[]; export type Output = OnlyCountsOutput | PathsOutput | GroupOutput; export type WalkerState = { paths: string[]; groups: Group[]; counts: Counts; options: Options; queue: Queue; }; export type ResultCallback<TOutput extends Output> = (error: Error | null, output: TOutput) => void; export type FilterPredicate = (path: string, isDirectory: boolean) => boolean; export type ExcludePredicate = (dirName: string, dirPath: string) => boolean; export type PathSeparator = "/" | "\\"; export type Options<TGlobFunction = unknown> = { includeBasePath?: boolean; includeDirs?: boolean; normalizePath?: boolean; maxDepth: number; maxFiles?: number; resolvePaths?: boolean; suppressErrors: boolean; group?: boolean; onlyCounts?: boolean; filters: FilterPredicate[]; resolveSymlinks?: boolean; useRealPaths?: boolean; excludeFiles?: boolean; excludeSymlinks?: boolean; exclude?: ExcludePredicate; relativePaths?: boolean; pathSeparator: PathSeparator; signal?: AbortSignal; globFunction?: TGlobFunction; }; export type GlobMatcher = (test: string) => boolean; export type GlobFunction = ((glob: string | string[], ...params: unknown[]) => GlobMatcher); export type GlobParams<T> = T extends (globs: string | string[], ...params: infer TParams extends unknown[]) => GlobMatcher ? TParams : [];
Version data entries
26 entries across 26 versions & 1 rubygems