fix(core): update
This commit is contained in:
15
ts/smartreport.classes.smartreport.ts
Normal file
15
ts/smartreport.classes.smartreport.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user