CacheStoreFactory

Interface defining a factory to create a cache store.


type CacheStoreFactory = {
    create(args: LiteralObject): CacheStore;
} | ((args: LiteralObject) => CacheStore | Promise<CacheStore>);