2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/reports/index.ts
2022-11-07 13:29:35 +05:30

19 lines
601 B
TypeScript

import { BalanceSheet } from './BalanceSheet/BalanceSheet';
import { GeneralLedger } from './GeneralLedger/GeneralLedger';
import { GSTR1 } from './GoodsAndServiceTax/GSTR1';
import { GSTR2 } from './GoodsAndServiceTax/GSTR2';
import { StockLedger } from './inventory/StockLedger';
import { ProfitAndLoss } from './ProfitAndLoss/ProfitAndLoss';
import { Report } from './Report';
import { TrialBalance } from './TrialBalance/TrialBalance';
export const reports = {
GeneralLedger,
ProfitAndLoss,
BalanceSheet,
TrialBalance,
GSTR1,
GSTR2,
StockLedger,
} as Record<string, typeof Report>;