UNPKG

478 BTypeScriptView Raw
1import { CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../definitions';
2import { Command } from '../lib/command';
3export declare class LoginCommand extends Command implements CommandPreRun {
4 getMetadata(): Promise<CommandMetadata>;
5 preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
6 getPasswordFromStdin(): Promise<string>;
7 run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
8}