9 lines
289 B
TypeScript
9 lines
289 B
TypeScript
import { ReportConfigEntity } from '../entities/report-config.entity';
|
|
import { GeneralReportConfig } from './general-report';
|
|
import { TenantReportConfig } from './tenant-report';
|
|
|
|
export const ReportConfigs: ReportConfigEntity[] = [
|
|
...GeneralReportConfig,
|
|
...TenantReportConfig,
|
|
];
|