repair.d.ts 544 B

12345678
  1. import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, IProject, ProjectIntegration } from '../definitions';
  2. import { Command } from '../lib/command';
  3. export 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. }