@capgo/cli
Version:
A CLI to upload to capgo servers
9 lines (8 loc) • 480 B
TypeScript
import type { OptionsUpload } from './upload_interface';
/**
* `bundle upload` command handler. Uploads the bundle, then — when the bundle is
* incompatible and the user opted into Capgo Builder — launches the Ink-based
* build flow. Kept out of `upload.ts` so the programmatic SDK bundle (which
* imports `uploadBundleInternal`) never statically pulls in `ink`.
*/
export declare function handleBundleUploadCommand(appId: string, options: OptionsUpload): Promise<void>;