@wasp-ui/ng-golden-layout
Version:
Angular bindings for golden-layout
51 lines • 1.72 kB
JavaScript
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { GoldenLayoutConfiguration } from "./config";
import { GoldenLayoutService } from "./golden-layout.service";
import { GoldenLayoutComponent } from "./golden-layout.component";
var GoldenLayoutModule = (function () {
function GoldenLayoutModule() {
}
/**
* @param {?} config
* @return {?}
*/
GoldenLayoutModule.forRoot = /**
* @param {?} config
* @return {?}
*/
function (config) {
return {
ngModule: GoldenLayoutModule,
providers: [
GoldenLayoutService,
{ provide: GoldenLayoutConfiguration, useValue: config }
]
};
};
GoldenLayoutModule.decorators = [
{ type: NgModule, args: [{
declarations: [GoldenLayoutComponent],
exports: [GoldenLayoutComponent],
imports: [CommonModule]
},] },
];
/** @nocollapse */
GoldenLayoutModule.ctorParameters = function () { return []; };
return GoldenLayoutModule;
}());
export { GoldenLayoutModule };
function GoldenLayoutModule_tsickle_Closure_declarations() {
/** @type {!Array<{type: !Function, args: (undefined|!Array<?>)}>} */
GoldenLayoutModule.decorators;
/**
* @nocollapse
* @type {function(): !Array<(null|{type: ?, decorators: (undefined|!Array<{type: !Function, args: (undefined|!Array<?>)}>)})>}
*/
GoldenLayoutModule.ctorParameters;
}
//# sourceMappingURL=module.js.map