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
Optionalentries: null | readonly (readonly [Key, Value])[]
Properties
Readonly[species]
Readonlyprototype