grafana/public/app/features/dashboard/alerting_srv.ts
2018-01-04 10:12:02 +01:00

14 lines
258 B
TypeScript

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