@btc-vision/bsi-common
Version:
Common library for OP_NET.
10 lines (9 loc) • 451 B
TypeScript
import { Decimal128, ObjectId } from 'mongodb';
export declare class TypeConverter {
static bigintToDecimal128(value: bigint): Decimal128;
static decimal128ToBigint(value: Decimal128): bigint;
static numberToDecimal128(value: number): Decimal128;
static stringToObjectId(value: string): ObjectId;
static decimal128ToBigintArray(values: Decimal128[]): bigint[];
static bigintToDecimal128Array(values: bigint[]): Decimal128[];
}