angularcui
Version:
69 lines (68 loc) • 1.89 kB
JavaScript
import { Component, NgModule, Optional, SkipSelf } from '@angular/core';
import { CommonModule } from '@angular/common';
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
var HelloComponent = /** @class */ (function () {
function HelloComponent() {
}
/**
* @return {?}
*/
HelloComponent.prototype.ngOnInit = function () {
};
return HelloComponent;
}());
HelloComponent.decorators = [
{ type: Component, args: [{
selector: 'app-hello',
template: "<p>\n Hello From Library Component\n</p>\n",
styles: [""]
},] },
];
/** @nocollapse */
HelloComponent.ctorParameters = function () { return []; };
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
var LibraryuiModule = /** @class */ (function () {
/**
* @param {?} parentModule
*/
function LibraryuiModule(parentModule) {
if (parentModule) {
throw new Error('CommonUiModule is already loaded. Import it in the AppModule only');
}
}
return LibraryuiModule;
}());
LibraryuiModule.decorators = [
{ type: NgModule, args: [{
imports: [
CommonModule
],
declarations: [HelloComponent],
exports: [
HelloComponent
]
},] },
];
/** @nocollapse */
LibraryuiModule.ctorParameters = function () { return [
{ type: LibraryuiModule, decorators: [{ type: Optional }, { type: SkipSelf },] },
]; };
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* Generated bundle index. Do not edit.
*/
export { LibraryuiModule, HelloComponent as ɵa };
//# sourceMappingURL=angularcui.js.map