UNPKG

ionic

Version:

A tool for creating and developing Ionic Framework mobile apps.

10 lines (9 loc) 665 B
import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions'; import { CapacitorCommand } from './base'; export declare class RunCommand extends CapacitorCommand implements CommandPreRun { getMetadata(): Promise<CommandMetadata>; preRun(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise<void>; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>; runServe(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>; runBuild(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>; }