index.d.ts 440 B

123456789101112131415
  1. import { MetadataGroup } from '@ionic/cli-framework';
  2. import { CommandMap, Namespace } from '../../lib/namespace';
  3. export declare class SSHNamespace extends Namespace {
  4. getMetadata(): Promise<{
  5. name: string;
  6. summary: string;
  7. description: string;
  8. footnotes: {
  9. id: string;
  10. url: string;
  11. }[];
  12. groups: MetadataGroup[];
  13. }>;
  14. getCommands(): Promise<CommandMap>;
  15. }