wrangler-action/dist/index.d.ts

7 lines
378 B
TypeScript
Raw Permalink Normal View History

2024-11-05 21:47:01 +01:00
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, };