module.ts 272 B

12345678910
  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. }