chore: upgrade deps (#10824)

This commit is contained in:
Noel
2025-04-05 13:18:56 +02:00
committed by GitHub
parent 432aba3df7
commit f580de8025
200 changed files with 6756 additions and 12893 deletions

View File

@@ -25,6 +25,7 @@ export interface Collection<Key, Value> {
* @typeParam Key - The key type this collection holds
* @typeParam Value - The value type this collection holds
*/
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
export class Collection<Key, Value> extends Map<Key, Value> {
/**
* Obtains the value of the given key if it exists, otherwise sets and returns the value provided by the default value generator.