UNPKG

@ionic/cli

Version:

A tool for creating and developing Ionic Framework mobile apps.

9 lines (8 loc) 544 B
import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, IProject, ProjectIntegration } from '../definitions'; import { Command } from '../lib/command'; export declare class RepairCommand extends Command { getMetadata(): Promise<CommandMetadata>; run(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise<void>; npmRepair(project: IProject): Promise<void>; cordovaRepair(cordova: Required<ProjectIntegration>, runinfo: CommandInstanceInfo): Promise<void>; }