UNPKG

333 BTypeScriptView Raw
1import { VersionUpgrade } from './getVersionUpgrade';
2import { Version } from './types';
3/**
4 * Returns the next version of the list given a base version and the upgrade type
5 * @param base current version
6 * @param bump the upgrade type
7 */
8export declare function nextVersion(base: Version, bump: VersionUpgrade): Version;