Interface CollectionConstructorInternal
interface CollectionConstructor { new CollectionConstructor(): Collection<unknown, unknown>; new CollectionConstructor<K, V>( entries?: null | readonly (
readonly [K, V])
[], ): Collection<K, V>; new CollectionConstructor<K, V>( iterable: Iterable<readonly [K, V]>, ): Collection<K, V>; "[species]": CollectionConstructor; prototype: Collection<unknown, unknown>;} Constructors
constructor
new CollectionConstructor(): Collection<unknown, unknown> Returns Collection<unknown, unknown>
new CollectionConstructor<K, V>( entries?: null | readonly (
readonly [K, V])
[],): Collection<K, V> Parameters
Optional
entries: null | readonly (readonly [K, V])[]
Properties
Readonly
[species]
Readonly
prototype