You are reading the documentation for Vue Storefront v2. See the latest docs.

Home > @vue-storefront/cache > CacheDriver

CacheDriver type

Signature:

export declare type CacheDriver = (options: any) => {
    invoke: () => Promise<any>;
    invalidate: () => Promise<any>;
};