remote.d.ts 320 B

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