@ionic/cli
Version:
A tool for creating and developing Ionic Framework mobile apps.
9 lines (8 loc) • 478 B
TypeScript
import { CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../definitions';
import { Command } from '../lib/command';
export declare class LoginCommand extends Command implements CommandPreRun {
getMetadata(): Promise<CommandMetadata>;
preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
getPasswordFromStdin(): Promise<string>;
run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
}