@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
13 lines • 422 B
TypeScript
import { Primitives } from './primatives';
import { TypeSymbols } from '../constants';
export declare const SHORT_LEN = 2;
export declare class Short extends Primitives {
private readonly short;
_type: TypeSymbols;
constructor(short: number);
static fromBytes(buf: Uint8Array): [Short, Uint8Array];
toJSON(): string;
toBytes(): Uint8Array;
value(): number;
}
//# sourceMappingURL=short.d.ts.map