Type Alias SafeWeakSet<K>

SafeWeakSet<K>: {
    __brand: "SafeWeakSet";
    __key: K;
    $add(this: SafeWeakSet<K>, key: K): void;
    $delete(this: SafeWeakSet<K>, key: K): boolean;
    $has(this: SafeWeakSet<K>, key: K): boolean;
}

Type Parameters

  • K