module.ts 274 B

1234567891011121314
  1. import {PanelCtrl} from 'app/features/panel/panel_ctrl';
  2. export class UnknownPanelCtrl extends PanelCtrl {
  3. static templateUrl = 'public/app/plugins/panel/unknown/module.html';
  4. /** @ngInject */
  5. constructor($scope, $injector) {
  6. super($scope, $injector);
  7. }
  8. }