alerting_srv.ts 311 B

1234567891011121314151617
  1. ///<reference path="../../headers/common.d.ts" />
  2. import coreModule from 'app/core/core_module';
  3. export class AlertingSrv {
  4. dashboard: any;
  5. alerts: any[];
  6. init(dashboard, alerts) {
  7. this.dashboard = dashboard;
  8. this.alerts = alerts || [];
  9. }
  10. }
  11. coreModule.service('alertingSrv', AlertingSrv);