index.d.ts 477 B

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