From c8f1690896f55f06e05a83704262783cfc2bb91d Mon Sep 17 00:00:00 2001 From: Almeida Date: Thu, 9 Jun 2022 19:53:23 +0100 Subject: [PATCH] refactor(collection): remove `default` property (#8055) --- packages/collection/src/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/collection/src/index.ts b/packages/collection/src/index.ts index ca9d3df23..91a3b94f4 100644 --- a/packages/collection/src/index.ts +++ b/packages/collection/src/index.ts @@ -29,8 +29,6 @@ export interface Collection extends Map { * an ID, for significantly improved performance and ease-of-use. */ export class Collection extends Map { - 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. *