UNPKG

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