Next release of setup-bun
This commit is contained in:
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>;
|
||||
|
||||
Reference in New Issue
Block a user