@equixswap/token-lists
Version:
📚 The Token Lists specification
9 lines (8 loc) • 333 B
TypeScript
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;