mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-25 00:59:50 +00:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
// @ts-nocheck
|
|
import moment from 'moment';
|
|
|
|
export const getDefaultCustomersBalanceQuery = () => {
|
|
return {
|
|
asDate: moment().endOf('day').format('YYYY-MM-DD'),
|
|
filterByOption: 'with-transactions',
|
|
};
|
|
};
|