@commitlint/read
Version:
Read commit messages from a specified range or last edit
12 lines • 335 B
TypeScript
interface GetCommitMessageOptions {
cwd?: string;
from?: string;
fromLastTag?: boolean;
to?: string;
last?: boolean;
edit?: boolean | string;
gitLogArgs?: string;
}
export default function getCommitMessages(settings: GetCommitMessageOptions): Promise<string[]>;
export {};
//# sourceMappingURL=read.d.ts.map