UNPKG

544 BTypeScriptView Raw
1import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, IProject, ProjectIntegration } from '../definitions';
2import { Command } from '../lib/command';
3export declare class RepairCommand extends Command {
4 getMetadata(): Promise<CommandMetadata>;
5 run(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise<void>;
6 npmRepair(project: IProject): Promise<void>;
7 cordovaRepair(cordova: Required<ProjectIntegration>, runinfo: CommandInstanceInfo): Promise<void>;
8}