grafana/public/app/features/dashboard/alerting_srv.ts
2017-12-19 16:06:54 +01:00

16 lines
309 B
TypeScript

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