| 1234567891011121314151617 |
- ///<reference path="../../headers/common.d.ts" />
- 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);
|