fix: build

This commit is contained in:
Kieran 2024-01-04 16:37:12 +00:00
parent a976909036
commit c612da125e
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

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