UNPKG

@oap75/utils

Version:
9 lines (8 loc) 322 B
import BN from "bn.js"; declare type EntityId = string; export declare type AnyId = EntityId | BN; export declare function idToBn(id: AnyId): BN; export declare function idsToBns(ids: AnyId[]): BN[]; export declare function bnToId(bnId: BN): EntityId; export declare function bnsToIds(bnIds: BN[]): EntityId[]; export {};