cache-flow
    Preparing search index...

    Interface CacheableParams

    interface CacheableParams {
        argsToKey?: (...args: any[]) => any;
        cacheId?: string;
        deserialize?: (value: any) => any;
        keyToString?: (...args: any[]) => any;
        options?: CacheOptions;
        serialize?: (value: any) => any;
    }
    Index
    argsToKey?: (...args: any[]) => any
    cacheId?: string
    deserialize?: (value: any) => any
    keyToString?: (...args: any[]) => any
    options?: CacheOptions
    serialize?: (value: any) => any