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