You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
338 B

import G from 'glob';
export declare function everyMatchAsync(pattern: string, options: G.IOptions): Promise<string[]>;
export declare function anyMatchAsync(pattern: string, options: G.IOptions): Promise<string[]>;
export declare function wrapGlobWithTimeout(query: () => Promise<string[]>, duration: number): Promise<string[] | false>;