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) 482 B
import Command from '../abstracts/AbstractCommitCommand'; export declare class CommitChangesCommand extends Command { static description: string; static flags: { noSummary: import("../../../../../../../Users/shakilsiraj/Documents/GitHub/ogit/node_modules/@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; run(): Promise<void>; getPrompts(): Promise<any[]>; runCommit(message: string, fileNames: string[], skipValidation: boolean): Promise<void>; }