Goldziher/vuex-factories

View on GitHub
src/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable @typescript-eslint/ban-types */
export interface Dictionary<T = any> {
    [k: string]: T
}

export interface ActionOption {
    value?: any
    execute?: Function
    dispatch?: string
    commit?: string
}