Skip to content

Instantly share code, notes, and snippets.

@eestein
Last active April 27, 2018 12:35
Show Gist options
  • Select an option

  • Save eestein/486c95133606f36ecb00b45afbebdf08 to your computer and use it in GitHub Desktop.

Select an option

Save eestein/486c95133606f36ecb00b45afbebdf08 to your computer and use it in GitHub Desktop.
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/platform-browser')) :
typeof define === 'function' && define.amd ? define('app1', ['exports', '@angular/core', '@angular/platform-browser'], factory) :
(factory((global.ng = global.ng || {}, global.ng.app1 = {}),global.ng.core,global.ng.platformBrowser));
}(this, (function (exports,core,platformBrowser) { 'use strict';
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
var AppComponent = /** @class */ (function () {
function AppComponent() {
this.title = 'app';
}
AppComponent.decorators = [
{ type: core.Component, args: [{
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
},] },
];
return AppComponent;
}());
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
var CompApp1Component = /** @class */ (function () {
function CompApp1Component() {
}
/**
* @return {?}
*/
CompApp1Component.prototype.ngOnInit = /**
* @return {?}
*/
function () {
};
CompApp1Component.decorators = [
{ type: core.Component, args: [{
selector: 'comp-app1',
templateUrl: './comp-app1.component.html',
styleUrls: ['./comp-app1.component.css']
},] },
];
/** @nocollapse */
CompApp1Component.ctorParameters = function () { return []; };
return CompApp1Component;
}());
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
var AppModule = /** @class */ (function () {
function AppModule() {
}
AppModule.decorators = [
{ type: core.NgModule, args: [{
declarations: [
AppComponent,
CompApp1Component
],
imports: [
platformBrowser.BrowserModule
],
entryComponents: [
CompApp1Component
],
providers: [],
bootstrap: [AppComponent]
},] },
];
return AppModule;
}());
exports.AppModule = AppModule;
exports.ɵa = AppComponent;
exports.ɵb = CompApp1Component;
Object.defineProperty(exports, '__esModule', { value: true });
})));
//# sourceMappingURL=app1.umd.js.map
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment