Skip to content

Commit c8f1690

Browse files
authored
refactor(collection): remove default property (#8055)
1 parent da9107c commit c8f1690

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Diff for: packages/collection/src/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ export interface Collection<K, V> extends Map<K, V> {
2929
* an ID, for significantly improved performance and ease-of-use.
3030
*/
3131
export class Collection<K, V> extends Map<K, V> {
32-
public static readonly default: typeof Collection = Collection;
33-
3432
/**
3533
* Obtains the value of the given key if it exists, otherwise sets and returns the value provided by the default value generator.
3634
*

0 commit comments

Comments
 (0)