mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
12 lines
341 B
TypeScript
12 lines
341 B
TypeScript
import { BalanceSheet } from './BalanceSheet/BalanceSheet';
|
|
import { GeneralLedger } from './GeneralLedger/GeneralLedger';
|
|
import { ProfitAndLoss } from './ProfitAndLoss/ProfitAndLoss';
|
|
import { TrialBalance } from './TrialBalance/TrialBalance';
|
|
|
|
export const reports = {
|
|
GeneralLedger,
|
|
ProfitAndLoss,
|
|
BalanceSheet,
|
|
TrialBalance,
|
|
};
|