@ionic/cli
Version:
A tool for creating and developing Ionic Framework mobile apps.
14 lines (13 loc) • 705 B
TypeScript
import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, ProjectIntegration } from '../../definitions';
import { Command } from '../../lib/command';
export declare abstract class CapacitorCommand extends Command {
private _integration?;
get integration(): Required<ProjectIntegration>;
checkCapacitor(runinfo: CommandInstanceInfo): Promise<void>;
preRunChecks(runinfo: CommandInstanceInfo): Promise<void>;
runCapacitor(argList: string[]): Promise<void>;
runBuild(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
checkForPlatformInstallation(platform: string): Promise<void>;
private promptToInstallCapacitor;
private _runCapacitor;
}