@capgo/cli
Version:
A CLI to upload to capgo servers
14 lines (13 loc) • 397 B
TypeScript
import type { Command } from 'commander';
export interface OnboardingCheckOptions {
cwd: string;
command: string;
appId?: string;
apikey?: string;
capacitorConfig?: string;
packageJson?: string;
mainFile?: string;
supaHost?: string;
supaAnon?: string;
}
export declare function startOnboardingCheck(command: Command, commandPath: string, workerUrl: URL): void;