UNPKG

ng-golden-layout

Version:
46 lines 1.64 kB
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { GoldenLayoutConfiguration } from './src/config'; import { GoldenLayoutService } from './src/golden-layout.service'; import { GoldenLayoutComponent } from './src/golden-layout.component'; export { GoldenLayoutConfiguration } from './src/config'; export { GlOnInit, GlOnResize } from './src/hooks'; export { GoldenLayoutService } from './src/golden-layout.service'; export { GoldenLayoutComponent } from './src/golden-layout.component'; export var GoldenLayoutModule = (function () { function GoldenLayoutModule() { } /** * @param {?} config * @return {?} */ GoldenLayoutModule.forRoot = function (config) { return { ngModule: GoldenLayoutModule, providers: [ GoldenLayoutService, { provide: GoldenLayoutConfiguration, useValue: config } ] }; }; GoldenLayoutModule.decorators = [ { type: NgModule, args: [{ imports: [CommonModule], exports: [GoldenLayoutComponent], declarations: [GoldenLayoutComponent] },] }, ]; /** @nocollapse */ GoldenLayoutModule.ctorParameters = function () { return []; }; return GoldenLayoutModule; }()); function GoldenLayoutModule_tsickle_Closure_declarations() { /** @type {?} */ GoldenLayoutModule.decorators; /** * @nocollapse * @type {?} */ GoldenLayoutModule.ctorParameters; } //# sourceMappingURL=index.js.map