ionic
Version:
A tool for creating and developing Ionic Framework mobile apps.
7 lines (6 loc) • 322 B
TypeScript
import { CommandLineInputs, CommandLineOptions, CommandMetadata } from '../../definitions';
import { DoctorCommand } from './base';
export declare class DoctorListCommand extends DoctorCommand {
getMetadata(): Promise<CommandMetadata>;
run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
}