@capgo/cli
Version:
A CLI to upload to capgo servers
12 lines (11 loc) • 508 B
TypeScript
import type { CapacitorConfig } from '../config';
import type { OnboardingCheckOptions } from './background';
export interface NotifyAppReadyProject {
dir: string;
workspaceRoot: string;
config: CapacitorConfig;
appId: string;
webDir?: string;
}
export type OnboardingScanProject = Pick<NotifyAppReadyProject, 'dir' | 'workspaceRoot' | 'appId' | 'webDir'>;
export declare function resolveNotifyAppReadyProject(options: OnboardingCheckOptions): Promise<NotifyAppReadyProject | undefined>;