6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
|
import { PortfolioReportRule } from './portfolio-report-rule.interface';
|
||
|
|
||
|
export interface PortfolioReport {
|
||
|
rules: { [group: string]: PortfolioReportRule[] };
|
||
|
}
|