git-jiggy
Version:
A fresh collection of node git utilities.
7 lines (6 loc) • 411 B
text/typescript
export declare const add: (files: string | string[]) => Promise<void>;
export declare const amendCommit: () => Promise<void>;
export declare const getCurrentBranchName: () => Promise<string>;
export declare const getFilesInLastCommit: () => Promise<string[]>;
export declare const getLastModifiedDate: (file: string) => Promise<string | undefined>;
export declare const getStagedFiles: () => Promise<string[]>;