@capgo/cli
Version:
A CLI to upload to capgo servers
11 lines (10 loc) • 423 B
TypeScript
import type { CapacitorConfig } from '../config';
import type { NotifyAppReadyCheckOptions } from '../notify-app-ready-background';
export interface NotifyAppReadyProject {
dir: string;
workspaceRoot: string;
config: CapacitorConfig;
appId: string;
webDir?: string;
}
export declare function resolveNotifyAppReadyProject(options: NotifyAppReadyCheckOptions): Promise<NotifyAppReadyProject | undefined>;