mirror of
https://github.com/kitabisa/docker-slim-action.git
synced 2025-04-17 04:06:07 +00:00

* feat: cache the bin Signed-off-by: Dwi Siswanto <me@dw1.io> * feat: print error while get cache Signed-off-by: Dwi Siswanto <me@dw1.io> --------- Signed-off-by: Dwi Siswanto <me@dw1.io>
11 lines
344 B
TypeScript
11 lines
344 B
TypeScript
import { Globber } from './internal-globber';
|
|
import { GlobOptions } from './internal-glob-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>;
|