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) 276 B
import Command from '../abstracts/AbstractCommitCommand'; export declare class AmendLastCommand extends Command { static description: string; run(): Promise<void>; getPrompts(): Promise<any[]>; runCommit(message: string, fileNames: string[]): Promise<void>; }