UNPKG

frail-map

Version:

FrailMap is an extension of WeakMap that supports primitive values using WeakRef.

7 lines 182 B
import type { StrongRef } from "./StrongRef.js"; export type FrailContainer<V> = WeakRef<{ data: V; }> | StrongRef<{ data: V; }>; //# sourceMappingURL=FrailContainer.d.ts.map