@ionic/cli
Version:
A tool for creating and developing Ionic Framework mobile apps.
8 lines (7 loc) • 390 B
TypeScript
import { CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions';
import { SSHBaseCommand } from './base';
export declare class SSHListCommand extends SSHBaseCommand implements CommandPreRun {
getMetadata(): Promise<CommandMetadata>;
preRun(): Promise<void>;
run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
}