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.

8 lines (7 loc) 279 B
import Command from '../abstracts/AbstractRevertCommand'; export declare class RevertLastCommitCommand extends Command { static description: string; run(): Promise<void>; getCommitHashes(): Promise<string[]>; preformRevertOnCommit(hash: string): Promise<void>; }