import { Module } from 'vuex';
import { ProductosState } from './ProductosState';
import { actions } from './actions';
import { getters } from './getters';
import { mutations } from './mutations';
import state from './state';

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

export default module


