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