mirror of
https://github.com/frappe/books.git
synced 2024-11-09 23:30:56 +00:00
19 lines
601 B
TypeScript
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>;
|