mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 15:20:34 +00:00
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
// @ts-nocheck
|
|
import t from '@/store/types';
|
|
|
|
export const setManualJournalsTableState = (queries) => {
|
|
return {
|
|
type: t.MANUAL_JOURNALS_TABLE_STATE_SET,
|
|
payload: { queries },
|
|
};
|
|
};
|