mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
16 lines
329 B
TypeScript
16 lines
329 B
TypeScript
// @ts-nocheck
|
|
import t from '@/store/types';
|
|
|
|
export const setWarehouseTransferTableState = (queries) => {
|
|
return {
|
|
type: t.WAREHOUSE_TRANSFERS_TABLE_STATE_SET,
|
|
payload: { queries },
|
|
};
|
|
};
|
|
|
|
export const resetWarehouseTransferTableState = () => {
|
|
return {
|
|
type: t.WAREHOUSE_TRANSFERS_TABLE_STATE_RESET,
|
|
};
|
|
};
|