smartreport/ts/smartreport.classes.smartreport.ts
2019-12-08 20:19:13 +00:00

16 lines
360 B
TypeScript

import * as plugins from './smartreport.plugins';
import { ReportSection } from './smartreport.classes.reportsection';
export class Smartreport {
public reportSections: ReportSection[] = [];
/**
* constructor
*/
constructor() {}
public addReportSection(reportSectionArg: ReportSection) {
this.reportSections.push(reportSectionArg);
}
}