fantasia-archive/src/store/module-keybinds/index.ts
2021-02-22 23:30:18 +01:00

17 lines
398 B
TypeScript

import { Module } from "vuex"
import { StateInterface } from "../index"
import state, { KeybindsStateInterface } from "./state"
import actions from "./actions"
import getters from "./getters"
import mutations from "./mutations"
const keybindsModule: Module<KeybindsStateInterface, StateInterface> = {
namespaced: true,
actions,
getters,
mutations,
state
}
export default keybindsModule