UNPKG

501 BTypeScriptView Raw
1export declare function generateGlobTasks(patterns: string[], opts: any): GlobObject[];
2export declare function globAll(globs: string[]): Promise<GlobResult[]>;
3export declare function getBasePath(pattern: string): string;
4export interface GlobObject {
5 pattern: string;
6 opts: GlobOptions;
7 base: string;
8}
9export interface GlobResult {
10 absolutePath: string;
11 base: string;
12}
13export interface GlobOptions {
14 ignore: string[];
15}
16export declare const DEFAULT_IGNORE_ARRAY: string[];