mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 07:10:33 +00:00
18 lines
341 B
TypeScript
18 lines
341 B
TypeScript
// @ts-nocheck
|
|
import t from '@/store/types';
|
|
|
|
export const setPaymentMadesTableState = (queries) => {
|
|
return {
|
|
type: t.PAYMENT_MADES_TABLE_STATE_SET,
|
|
payload: { queries },
|
|
};
|
|
};
|
|
|
|
export const resetPaymentMadesTableState = (queries) => {
|
|
return {
|
|
type: t.PAYMENT_MADES_TABLE_STATE_RESET,
|
|
payload: { queries },
|
|
};
|
|
};
|
|
|