| 12345678910111213 |
- import coreModule from 'app/core/core_module';
- export class AlertingSrv {
- dashboard: any;
- alerts: any[];
- init(dashboard, alerts) {
- this.dashboard = dashboard;
- this.alerts = alerts || [];
- }
- }
- coreModule.service('alertingSrv', AlertingSrv);
|