Interface MapConstructor
interface MapConstructor {
new MapConstructornew (): Map<any, any>;
new MapConstructornew <K, V>(entries?: readonly (readonly [K, V])[]): Map<K, V>;
new MapConstructornew (): Map<any, any>;
new MapConstructornew <K, V>(iterable?: Iterable<readonly [K, V], any, any>): Map<K, V>;
[species]: MapConstructor;
prototype: Map<any, any>;
}
new MapConstructornew (): Map<any, any>;
new MapConstructornew <K, V>(entries?: readonly (readonly [K, V])[]): Map<K, V>;
new MapConstructornew (): Map<any, any>;
new MapConstructornew <K, V>(iterable?: Iterable<readonly [K, V], any, any>): Map<K, V>;
[species]: MapConstructor;
prototype: Map<any, any>;
}