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