mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 14:50:32 +00:00
18 lines
334 B
TypeScript
18 lines
334 B
TypeScript
// @ts-nocheck
|
|
import t from '@/store/types';
|
|
|
|
export const setInvoicesTableState = (queries) => {
|
|
return {
|
|
type: t.INVOICES_TABLE_STATE_SET,
|
|
payload: { queries },
|
|
};
|
|
};
|
|
|
|
export const resetInvoicesTableState= () => {
|
|
return {
|
|
type: t.INVOICES_TABLE_STATE_RESET,
|
|
};
|
|
}
|
|
|
|
export const setSelectedRowsItems = () => {};
|