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.

11 lines (10 loc) 519 B
import Command, { BranchNamePairStructure } from '../abstracts/AbstractBranchCommand'; export declare class CreateBranchCommand extends Command { static description: string; static flags: { search: import("../../../../../../../Users/shakilsiraj/Documents/GitHub/ogit/node_modules/@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; run(): Promise<void>; getSelectedBranch(): Promise<BranchNamePairStructure>; preformBranchOperation(branchInfo: BranchNamePairStructure): Promise<void>; }