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

12 lines
258 B
TypeScript

import { ActionTree } from "vuex"
import { StateInterface } from "../index"
import { KeybindsStateInterface } from "./state"
const actions: ActionTree<KeybindsStateInterface, StateInterface> = {
// someAction (context) {
// }
}
export default actions