Interface LegacyWeakMap<K, V>
interface LegacyWeakMap<K, V> { delete: ((key: K) => void); get: ((key: K) => V); has: ((key: K) => boolean); init: ((key: K,
value: V) => void); set: ((key: K,
value: V) => void); } Properties
delete
delete: ((key: K) => void) has
has: ((key: K) => boolean) init
init: ((key: K,
value: V) => void) set
set: ((key: K,
value: V) => void)
LegacyWeakMap is deprecated. Use WeakMapStore instead if possible.