mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2024-11-10 14:01:06 +07:00
19 lines
638 B
TypeScript
19 lines
638 B
TypeScript
|
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>;
|