import { ActionTree } from 'vuex' import { StateInterface } from '../index' import { ExampleStateInterface } from './state' const actions: ActionTree = { someAction (/* context */) { // your code } } export default actions