index.d.ts 273 B

123456789
  1. import { CommandMap, Namespace } from '../../lib/namespace';
  2. export declare class ConfigNamespace extends Namespace {
  3. getMetadata(): Promise<{
  4. name: string;
  5. summary: string;
  6. description: string;
  7. }>;
  8. getCommands(): Promise<CommandMap>;
  9. }