UNPKG

@capgo/cli

Version:
11 lines (10 loc) 423 B
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>;