angularcui
Version:
74 lines (68 loc) • 1.67 kB
JavaScript
import { Component, NgModule, Optional, SkipSelf } from '@angular/core';
import { CommonModule } from '@angular/common';
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
class HelloComponent {
constructor() { }
/**
* @return {?}
*/
ngOnInit() {
}
}
HelloComponent.decorators = [
{ type: Component, args: [{
selector: 'app-hello',
template: `<p>
Hello From Library Component
</p>
`,
styles: [``]
},] },
];
/** @nocollapse */
HelloComponent.ctorParameters = () => [];
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
class LibraryuiModule {
/**
* @param {?} parentModule
*/
constructor(parentModule) {
if (parentModule) {
throw new Error('CommonUiModule is already loaded. Import it in the AppModule only');
}
}
}
LibraryuiModule.decorators = [
{ type: NgModule, args: [{
imports: [
CommonModule
],
declarations: [HelloComponent],
exports: [
HelloComponent
]
},] },
];
/** @nocollapse */
LibraryuiModule.ctorParameters = () => [
{ 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