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