Add explicit dependency on @actions/glob
This commit is contained in:
parent
1922a489a8
commit
19e7c25974
51 changed files with 1611 additions and 13 deletions
10
node_modules/@actions/glob/lib/glob.d.ts
generated
vendored
10
node_modules/@actions/glob/lib/glob.d.ts
generated
vendored
|
|
@ -1,5 +1,6 @@
|
|||
import { Globber } from './internal-globber';
|
||||
import { GlobOptions } from './internal-glob-options';
|
||||
import { HashFileOptions } from './internal-hash-file-options';
|
||||
export { Globber, GlobOptions };
|
||||
/**
|
||||
* Constructs a globber
|
||||
|
|
@ -8,3 +9,12 @@ export { Globber, GlobOptions };
|
|||
* @param options Glob options
|
||||
*/
|
||||
export declare function create(patterns: string, options?: GlobOptions): Promise<Globber>;
|
||||
/**
|
||||
* Computes the sha256 hash of a glob
|
||||
*
|
||||
* @param patterns Patterns separated by newlines
|
||||
* @param currentWorkspace Workspace used when matching files
|
||||
* @param options Glob options
|
||||
* @param verbose Enables verbose logging
|
||||
*/
|
||||
export declare function hashFiles(patterns: string, currentWorkspace?: string, options?: HashFileOptions, verbose?: Boolean): Promise<string>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue