import state from './state';
import {getters} from './getters';
import { mutations } from './mutations';
import * as actions from './actions';
import { IncidentState } from './IncidentState';
import { ActionTree, Module } from 'vuex';

const module: Module<IncidentState, unknown> = {
  state,
  namespaced: true,
  getters,
  mutations,
  actions: actions as ActionTree<IncidentState, unknown>,
}

export default module


