module.ts 327 B

123456789101112131415
  1. ///<reference path="../../../headers/common.d.ts" />
  2. import {PanelCtrl} from '../../../features/panel/panel';
  3. export class UnknownPanelCtrl extends PanelCtrl {
  4. static templateUrl = 'public/app/plugins/panel/unknown/module.html';
  5. /** @ngInject */
  6. constructor($scope, $injector) {
  7. super($scope, $injector);
  8. }
  9. }