UNPKG

353 BTypeScriptView Raw
1import { CommandMap, Namespace } from '../../lib/namespace';
2export declare class SSHNamespace extends Namespace {
3 getMetadata(): Promise<{
4 name: string;
5 summary: string;
6 description: string;
7 footnotes: {
8 id: string;
9 url: string;
10 }[];
11 }>;
12 getCommands(): Promise<CommandMap>;
13}