Type alias CacheWithLimitsOptions

CacheWithLimitsOptions: {
    [K in keyof Caches]?: Caches[K][0]["prototype"] extends DataManager<infer Key, infer Value, any>
        ? LimitedCollectionOptions<Key, Value> | number
        : never
}

Generated using TypeDoc