fixed bugs

This commit is contained in:
IDONTSUDO 2024-09-26 18:41:51 +03:00
parent 5eb588a709
commit 50d239a4eb
5 changed files with 48 additions and 17 deletions

View file

@ -66,7 +66,8 @@ declare global {
overrideValue(key: K, value: OptionalProperties<V>): void;
keysToJson(): string;
toArray(): V[];
getPredicateValue(callBack: (value: V) => boolean): K[];
toArrayEntries(): { key: K; value: V }[];
getPredicateKey(callBack: (value: V) => boolean): K[];
incrementValue(key: K): void;
}
interface Boolean {