Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/@actions/glob/lib/internal-globber.d.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
42 lines (42 sloc)
1.3 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} |