UNPKG

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