mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2024-11-10 14:01:06 +07:00
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
|
import { GlobOptions } from './internal-glob-options';
|
||
|
export { GlobOptions };
|
||
|
/**
|
||
|
* Used to match files and directories
|
||
|
*/
|
||
|
export interface Globber {
|
||
|
/**
|
||
|
* Returns the search path preceding the first glob segment, from each pattern.
|
||
|
* Duplicates and descendants of other paths are filtered out.
|
||
|
*
|
||
|
* Example 1: The patterns `/foo/*` and `/bar/*` returns `/foo` and `/bar`.
|
||
|
*
|
||
|
* Example 2: The patterns `/foo/*` and `/foo/bar/*` returns `/foo`.
|
||
|
*/
|
||
|
getSearchPaths(): string[];
|
||
|
/**
|
||
|
* Returns files and directories matching the glob patterns.
|
||
|
*
|
||
|
* Order of the results is not guaranteed.
|
||
|
*/
|
||
|
glob(): Promise<string[]>;
|
||
|
/**
|
||
|
* Returns files and directories matching the glob patterns.
|
||
|
*
|
||
|
* Order of the results is not guaranteed.
|
||
|
*/
|
||
|
globGenerator(): AsyncGenerator<string, void>;
|
||
|
}
|
||
|
export declare class DefaultGlobber implements Globber {
|
||
|
private readonly options;
|
||
|
private readonly patterns;
|
||
|
private readonly searchPaths;
|
||
|
private constructor();
|
||
|
getSearchPaths(): string[];
|
||
|
glob(): Promise<string[]>;
|
||
|
globGenerator(): AsyncGenerator<string, void>;
|
||
|
/**
|
||
|
* Constructs a DefaultGlobber
|
||
|
*/
|
||
|
static create(patterns: string, options?: GlobOptions): Promise<DefaultGlobber>;
|
||
|
private static stat;
|
||
|
}
|