module.ts 431 B

123456789101112131415161718192021
  1. ///<reference path="../../../headers/common.d.ts" />
  2. import {PanelDirective, PanelCtrl} from '../../../features/panel/panel';
  3. class TestPanelCtrl extends PanelCtrl {
  4. constructor($scope) {
  5. super($scope);
  6. }
  7. }
  8. class TestPanel extends PanelDirective {
  9. templateUrl = `app/plugins/panel/test/module.html`;
  10. controller = TestPanelCtrl;
  11. }
  12. export {
  13. TestPanelCtrl,
  14. // testPanelDirective as panel,
  15. TestPanel as Panel,
  16. }