| 123456789101112131415 |
- ///<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);
|