Type alias AntCacheValue

AntCacheValue: number | string | boolean | null | bigint | Date | Map<AntCacheValue, AntCacheValue> | Set<AntCacheValue> | {
    [key: string]: AntCacheValue;
} | AntCacheValue[]

Value type to store

Cover native JSON types, plus Set, Map, Date, bigint

Generated using TypeDoc