configure.d.ts 512 B

12345678
  1. import { CommandLineInputs, CommandLineOptions } from '@ionic/cli-framework';
  2. import { CommandInstanceInfo, CommandMetadata } from '../../definitions';
  3. import { LiveUpdatesConfCommand } from './core';
  4. export declare class ConfigureCommand extends LiveUpdatesConfCommand {
  5. getMetadata(): Promise<CommandMetadata>;
  6. preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
  7. run(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise<void>;
  8. }