index.d.ts 276 B

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