mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
19 lines
324 B
TypeScript
19 lines
324 B
TypeScript
// @ts-nocheck
|
|
import t from '@/store/types';
|
|
|
|
export const setItemsTableState = (queries) => {
|
|
return {
|
|
type: t.ITEMS_TABLE_STATE_SET,
|
|
payload: { queries },
|
|
};
|
|
};
|
|
|
|
|
|
export const resetItemsTableState = () => {
|
|
return {
|
|
type: t.ITEMS_TABLE_STATE_RESET,
|
|
};
|
|
}
|
|
|
|
export const setSelectedRowsItems = () => {};
|