UNPKG

320 BTypeScriptView Raw
1import { CommandLineInputs, CommandLineOptions, CommandMetadata } from '../../definitions';
2import { SSHBaseCommand } from './base';
3export declare class SSHUseCommand extends SSHBaseCommand {
4 getMetadata(): Promise<CommandMetadata>;
5 run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
6}