UNPKG

498 BTypeScriptView Raw
1import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions';
2import { CapacitorCommand } from './base';
3export declare class UpdateCommand 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}