UNPKG

blackbull-sdk

Version:

An SDK for building applications on top of Blackbullswap

9 lines (8 loc) 333 B
import { VersionUpgrade } from './getVersionUpgrade'; import { Version } from './types'; /** * Returns the next version of the list given a base version and the upgrade type * @param base current version * @param bump the upgrade type */ export declare function nextVersion(base: Version, bump: VersionUpgrade): Version;