mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2025-07-01 20:53:14 +07:00
Resolve attachments via glob
This commit is contained in:
18
node_modules/@actions/glob/lib/glob.d.ts
generated
vendored
Normal file
18
node_modules/@actions/glob/lib/glob.d.ts
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
import { Globber } from './internal-globber';
|
||||
import { GlobOptions } from './internal-glob-options';
|
||||
import { HashFileOptions } from './internal-hash-file-options';
|
||||
export { Globber, GlobOptions };
|
||||
/**
|
||||
* Constructs a globber
|
||||
*
|
||||
* @param patterns Patterns separated by newlines
|
||||
* @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 options Glob options
|
||||
*/
|
||||
export declare function hashFiles(patterns: string, options?: HashFileOptions): Promise<string>;
|
Reference in New Issue
Block a user