import { CuentaBancaria } from 'src/models';
import { MutationTree } from 'vuex';
import { CuentaBancariaState } from './CuentaBancariaState';

export const mutations: MutationTree<CuentaBancariaState> = {
  setList: (state, value: CuentaBancaria[]) => (state.list = value),
  setLoading: (state, value: boolean) => (state.loading = value),
};
