@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
14 lines • 494 B
TypeScript
import { customInspectSymbol } from '../../constants/node';
import { Primitives } from './primatives';
import { TypeSymbols } from '../constants';
export declare class BigIntPr extends Primitives {
private readonly bigint;
_type: TypeSymbols;
constructor(bigint: bigint);
[customInspectSymbol](): bigint;
static fromBytes(buf: Uint8Array): [BigIntPr, Uint8Array];
toJSON(): string;
toBytes(): Uint8Array;
value(): bigint;
}
//# sourceMappingURL=bigintpr.d.ts.map