/** * API application abstract controller. * * This file includes `import`'s for desktop/api components/directives used * by the HTML page and the controller to provide the configuration. */ export class AbstractAPIController extends AbstractAppController { /** * @param {angular.IScope} $scope Scope. * @param {angular.auto.IInjectorService} $injector Main injector. */ constructor($scope: angular.IScope, $injector: angular.auto.IInjectorService); } export namespace AbstractAPIController { let $inject: string[]; } export default myModule; import { AbstractAppController } from 'gmf/controllers/AbstractAppController'; import angular from 'angular'; /** * @type {angular.IModule} * @hidden */ declare const myModule: angular.IModule;