UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

12 lines 349 B
/** * A cache to store the serialized version of an object * * This is a thin wrapper around WeakMap */ export declare class SerializedCache { map: WeakMap<object, Uint8Array>; get(obj: object): Uint8Array | undefined; set(obj: object, serialized: Uint8Array): void; clear(): void; } //# sourceMappingURL=serializedCache.d.ts.map