fix: build

This commit is contained in:
2024-01-04 16:37:12 +00:00
parent a976909036
commit c612da125e

View File

@ -152,4 +152,8 @@ export class SortedMap<K, V> {
get size(): number {
return this.map.size;
}
clear() {
this.map.clear();
}
}