UNPKG

@capgo/cli

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