/** * * @license * Copyright 2017 SAP Ariba * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * * */ import { ModuleWithProviders } from '@angular/core'; import { ComponentRegistry } from './core/component-registry.service'; /** * Component module is core module for the common layouts and widgets libraries. * * todo: There are some things that I still need to resolve - please see and notices @Duplicates * jsdoc I want to keep this there to remind me that I need to refactor this as of now there are * not much option with angular. * */ export declare class AribaComponentsModule { static forRoot(): ModuleWithProviders; } export declare function registerComponents(compRegistry: ComponentRegistry): Function;