add.d.ts 495 B

1234567
  1. import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions';
  2. import { CapacitorCommand } from './base';
  3. export declare class AddCommand extends CapacitorCommand implements CommandPreRun {
  4. getMetadata(): Promise<CommandMetadata>;
  5. preRun(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise<void>;
  6. run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
  7. }