Skip to content

Commit 0e1afae

Browse files
committed
Remove implements Map from stable key map
Resolves #2747
1 parent 2c73a28 commit 0e1afae

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Unreleased
22

3+
### Bug Fixes
4+
5+
- Fix type errors when using `"module": "ESNext"` and importing TypeDoc, #2747.
6+
37
## v0.26.10 (2024-10-16)
48

59
### Bug Fixes

Diff for: src/lib/utils/map.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ export class DefaultMap<K, V> extends Map<K, V> {
1919
}
2020
}
2121

22-
export class StableKeyMap<K extends { getStableKey(): string }, V>
23-
implements Map<K, V>
24-
{
22+
export class StableKeyMap<K extends { getStableKey(): string }, V> {
2523
[Symbol.toStringTag] = "StableKeyMap";
2624
private impl = new Map<string, [K, V]>();
2725

0 commit comments

Comments
 (0)