module.ts 390 B

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