refactor(collection): remove default property (#8055)

This commit is contained in:
Almeida
2022-06-09 19:53:23 +01:00
committed by GitHub
parent da9107c007
commit c8f1690896

View File

@@ -29,8 +29,6 @@ export interface Collection<K, V> extends Map<K, V> {
* an ID, for significantly improved performance and ease-of-use.
*/
export class Collection<K, V> extends Map<K, V> {
public static readonly default: typeof Collection = Collection;
/**
* Obtains the value of the given key if it exists, otherwise sets and returns the value provided by the default value generator.
*