UNPKG

@actions/glob

Version:
43 lines (42 loc) 1.33 kB
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; }