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