9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
interface GetCommitMessageOptions {
|
|
cwd?: string;
|
|
from?: string;
|
|
to?: string;
|
|
edit?: boolean | string;
|
|
}
|
|
export default function getCommitMessages(settings: GetCommitMessageOptions): Promise<string[]>;
|
|
export {};
|
|
//# sourceMappingURL=read.d.ts.map
|