fantasia-archive/src/store/module-keybinds/index.ts

17 lines
398 B
TypeScript
Raw Normal View History

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