UNPKG

@angular/platform-webworker-dynamic

Version:

Angular - library for using Angular in a web browser with web workers

52 lines (44 loc) 1.56 kB
/** * @license Angular v6.1.8 * (c) 2010-2018 Google, Inc. https://angular.io/ * License: MIT */ import { Version, COMPILER_OPTIONS, PLATFORM_ID, createPlatformFactory } from '@angular/core'; import { ɵPLATFORM_WORKER_UI_ID } from '@angular/common'; import { ResourceLoader } from '@angular/compiler'; import { ɵResourceLoaderImpl, ɵplatformCoreDynamic } from '@angular/platform-browser-dynamic'; /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,uselessCode} checked by tsc */ /** @type {?} */ const VERSION = new Version('6.1.8'); /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,uselessCode} checked by tsc */ /** * * \@experimental API related to bootstrapping are still under review. @type {?} */ const platformWorkerAppDynamic = createPlatformFactory(ɵplatformCoreDynamic, 'workerAppDynamic', [ { provide: COMPILER_OPTIONS, useValue: { providers: [{ provide: ResourceLoader, useClass: ɵResourceLoaderImpl, deps: [] }] }, multi: true }, { provide: PLATFORM_ID, useValue: ɵPLATFORM_WORKER_UI_ID } ]); /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,uselessCode} checked by tsc */ // This file only reexports content of the `src` folder. Keep it that way. /** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,uselessCode} checked by tsc */ /** * Generated bundle index. Do not edit. */ export { VERSION, platformWorkerAppDynamic }; //# sourceMappingURL=platform-webworker-dynamic.js.map