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