export function LoadingPanelDirectiveFactory() { return new LoadingPanelDirective(); } class LoadingPanelDirective implements angular.IDirective { restrict = 'A'; bindToController = true; template = require('./LoadingPanel.html'); replace = true; transclude = true; scope = { loadingPanel: '=' }; }