UNPKG

@avalabs/avalanchejs

Version:
15 lines 507 B
import { customInspectSymbol } from '../../constants/node'; import { Primitives } from './primatives'; import { TypeSymbols } from '../constants'; export declare const INT_LEN = 4; export declare class Int extends Primitives { private readonly int; _type: TypeSymbols; constructor(int: number); static fromBytes(buf: Uint8Array): [Int, Uint8Array]; [customInspectSymbol](): number; toJSON(): number; toBytes(): Uint8Array; value(): number; } //# sourceMappingURL=int.d.ts.map