add.d.ts 662 B

123456789
  1. import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata } from '../../definitions';
  2. import { LiveUpdatesConfCommand } from './core';
  3. export declare class AddCommand extends LiveUpdatesConfCommand {
  4. getMetadata(): Promise<CommandMetadata>;
  5. protected buildCordovaLiveUpdateOptions(options: CommandLineOptions): string[];
  6. preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
  7. addPlugin(options: CommandLineOptions, runinfo: CommandInstanceInfo, integration?: string): Promise<void>;
  8. run(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise<void>;
  9. }