commitmnt
Version:
Copy your gitlab and bitbucket commits to a new, publishable github repo
14 lines (13 loc) • 399 B
TypeScript
/**
* Get a list of commits from the current working directory
*
* @param after the date to begin the list from
* @param author some identifying string used to filter by commit author
* @returns the list of commits
*
* @category Public API Module Helper
*/
export declare function getCommits({ after, author }?: {
after?: string;
author?: string;
}): Promise<string[]>;