Interface WeakMapConstructor

    interface WeakMapConstructor {
        new WeakMapConstructor<K extends WeakKey = WeakKey, V = any>(
            entries?: readonly (readonly [K, V])[],
        ): WeakMap<K, V>;
        new WeakMapConstructor<K extends WeakKey, V>(
            iterable: Iterable<readonly [K, V]>,
        ): WeakMap<K, V>;
        prototype: WeakMap<WeakKey, any>;
    }

    Constructors

    Properties

    Constructors

    Properties

    prototype: WeakMap<WeakKey, any>