mirror of
https://github.com/deployphp/action.git
synced 2025-06-29 12:44:14 +00:00
Update deps
This commit is contained in:
parent
eed58e3496
commit
363bb1be96
126 changed files with 5743 additions and 2737 deletions
6
node_modules/zx/build/goods.d.ts
generated
vendored
6
node_modules/zx/build/goods.d.ts
generated
vendored
|
@ -8,6 +8,7 @@ export { default as which } from 'which';
|
|||
export { default as YAML } from 'yaml';
|
||||
export { default as path } from 'node:path';
|
||||
export { default as os } from 'node:os';
|
||||
export { ssh } from 'webpod';
|
||||
export declare let argv: minimist.ParsedArgs;
|
||||
export declare function updateArgv(args: string[]): void;
|
||||
export declare const globby: ((patterns: string | readonly string[], options?: globbyModule.Options) => Promise<string[]>) & typeof globbyModule;
|
||||
|
@ -19,3 +20,8 @@ export declare function question(query?: string, options?: {
|
|||
choices: string[];
|
||||
}): Promise<string>;
|
||||
export declare function stdin(): Promise<string>;
|
||||
export declare function retry<T>(count: number, callback: () => T): Promise<T>;
|
||||
export declare function retry<T>(count: number, duration: Duration | Generator<number>, callback: () => T): Promise<T>;
|
||||
export declare function expBackoff(max?: Duration, rand?: Duration): Generator<number, void, unknown>;
|
||||
export declare function spinner<T>(callback: () => T): Promise<T>;
|
||||
export declare function spinner<T>(title: string, callback: () => T): Promise<T>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue