@capgo/cli
Version:
A CLI to upload to capgo servers
8 lines (7 loc) • 543 B
TypeScript
import type { CapacitorProjectCandidate } from './project-discovery.js';
export interface BuilderProjectPrompts {
confirm: (candidate: CapacitorProjectCandidate) => Promise<boolean | symbol>;
select: (candidates: CapacitorProjectCandidate[]) => Promise<string | symbol>;
}
export declare function projectCandidateLabel(candidate: CapacitorProjectCandidate): string;
export declare function selectCapacitorProject(candidates: CapacitorProjectCandidate[], prompts: BuilderProjectPrompts): Promise<CapacitorProjectCandidate | undefined>;