mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 01:53:24 +01:00
7 lines
378 B
TypeScript
7 lines
378 B
TypeScript
|
declare function installWrangler(): Promise<void>;
|
||
|
declare function authenticationSetup(): void;
|
||
|
declare function execCommands(commands: string[], cmdType: string): Promise<void>;
|
||
|
declare function uploadSecrets(): Promise<void>;
|
||
|
declare function wranglerCommands(): Promise<void>;
|
||
|
export { authenticationSetup, execCommands, installWrangler, uploadSecrets, wranglerCommands, };
|