/** * Interface to store the current and new versions of the package during the release setup process. */ interface IReleaseInfo { /** * The current version of the package. */ currentVersion: string; /** * The new version to be released. */ newVersion: string; } export { IReleaseInfo, };