ionic
Version:
A tool for creating and developing Ionic Framework mobile apps.
11 lines (10 loc) • 621 B
TypeScript
import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../definitions';
import { Command } from '../lib/command';
export declare class ServeCommand extends Command implements CommandPreRun {
getMetadata(): Promise<CommandMetadata>;
preRun(inputs: CommandLineInputs, options: CommandLineOptions, { location }: CommandInstanceInfo): Promise<void>;
run(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise<void>;
}
export declare class LabCommand extends ServeCommand {
getMetadata(): Promise<CommandMetadata>;
}