clone.d.ts 319 B

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