Vuex - Long Term Memory
    Preparing search index...

    Interface LTMConfig<S>

    interface LTMConfig<S> {
        execute: Executor;
        filter: Filter;
        merge: Merger<S>;
        reduce: Reducer<S>;
        storage: AsyncStorage<Partial<S>>;
    }

    Type Parameters

    • S
    Index

    Properties

    execute: Executor
    filter: Filter
    merge: Merger<S>
    reduce: Reducer<S>
    storage: AsyncStorage<Partial<S>>