share.d.ts 217 B

123456
  1. import { CommandMetadata } from '../definitions';
  2. import { Command } from '../lib/command';
  3. export declare class ShareCommand extends Command {
  4. getMetadata(): Promise<CommandMetadata>;
  5. run(): Promise<void>;
  6. }