@0xsequence/collectible-lists
Version:
📚 The Collectible Lists specification
9 lines (8 loc) • 389 B
TypeScript
import { VersionUpgrade } from './getVersionUpgrade';
import { CollectibleInfo } from './types';
/**
* Returns the minimum version bump for the given list
* @param baseList the base list of collectibles
* @param updatedList the updated list of collectibles
*/
export declare function minVersionBump(baseList: CollectibleInfo[], updatedList: CollectibleInfo[]): VersionUpgrade;