angularcui
Version:
68 lines (63 loc) • 2.09 kB
JavaScript
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common')) :
typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@angular/common'], factory) :
(factory((global.angularcui = {}),global.ng.core,global.ng.common));
}(this, (function (exports,core,common) { 'use strict';
/**
* @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: core.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: core.NgModule, args: [{
imports: [
common.CommonModule
],
declarations: [HelloComponent],
exports: [
HelloComponent
]
},] },
];
/** @nocollapse */
LibraryuiModule.ctorParameters = function () { return [
{ type: LibraryuiModule, decorators: [{ type: core.Optional }, { type: core.SkipSelf },] },
]; };
exports.LibraryuiModule = LibraryuiModule;
exports.ɵa = HelloComponent;
Object.defineProperty(exports, '__esModule', { value: true });
})));
//# sourceMappingURL=angularcui.umd.js.map