/** * A valid `picomatch` glob pattern, or array of patterns. */ type FilterPattern = ReadonlyArray | string | RegExp | null; interface Options { include?: FilterPattern; exclude?: FilterPattern; [key: string]: any; } export type { FilterPattern, Options };