@eighty4/changelog
Version:
Changelog utilities for CICD
7 lines (6 loc) • 320 B
TypeScript
export type CheckUnreleasedOpts = {
changelogFile: string;
};
export declare function parseArgs(args: Array<string>): CheckUnreleasedOpts;
export declare function checkUnreleasedFromCliArgs(args: Array<string>): Promise<boolean>;
export declare function checkUnreleased(opts: CheckUnreleasedOpts): Promise<boolean>;