UNPKG

ogit

Version:

A lazy developer's Git CLI made simple. Makes using git on cloud IDEs (i.e. C9) a walk in the park.

12 lines (11 loc) 294 B
import 'reflect-metadata'; import { Command } from '@oclif/command'; export default class CheckoutRepoCommand extends Command { static description: string; static args: { name: string; required: boolean; description: string; }[]; run(): Promise<void>; }