@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
15 lines • 507 B
TypeScript
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