50 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			50 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @license
							 | 
						||
| 
								 | 
							
								 * Copyright Google Inc. All Rights Reserved.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * Use of this source code is governed by an MIT-style license that can be
							 | 
						||
| 
								 | 
							
								 * found in the LICENSE file at https://angular.io/license
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import * as compiler from '@angular/compiler';
							 | 
						||
| 
								 | 
							
								import * as compilerTesting from '@angular/compiler/testing';
							 | 
						||
| 
								 | 
							
								import * as core from '@angular/core';
							 | 
						||
| 
								 | 
							
								import * as coreTesting from '@angular/core/testing';
							 | 
						||
| 
								 | 
							
								import * as elements from '@angular/elements';
							 | 
						||
| 
								 | 
							
								import * as forms from '@angular/forms';
							 | 
						||
| 
								 | 
							
								import * as http from '@angular/http';
							 | 
						||
| 
								 | 
							
								import * as httpTesting from '@angular/http/testing';
							 | 
						||
| 
								 | 
							
								import * as platformBrowser from '@angular/platform-browser';
							 | 
						||
| 
								 | 
							
								import * as platformBrowserTesting from '@angular/platform-browser/testing';
							 | 
						||
| 
								 | 
							
								import * as platformBrowserDynamic from '@angular/platform-browser-dynamic';
							 | 
						||
| 
								 | 
							
								import * as platformServer from '@angular/platform-server';
							 | 
						||
| 
								 | 
							
								import * as platformServerTesting from '@angular/platform-server/testing';
							 | 
						||
| 
								 | 
							
								import * as platformWebworker from '@angular/platform-webworker';
							 | 
						||
| 
								 | 
							
								import * as platformWebworkerDynamic from '@angular/platform-webworker-dynamic';
							 | 
						||
| 
								 | 
							
								import * as router from '@angular/router';
							 | 
						||
| 
								 | 
							
								import * as routerTesting from '@angular/router/testing';
							 | 
						||
| 
								 | 
							
								import * as serviceWorker from '@angular/service-worker';
							 | 
						||
| 
								 | 
							
								import * as upgrade from '@angular/upgrade';
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								export default {
							 | 
						||
| 
								 | 
							
								  compiler,
							 | 
						||
| 
								 | 
							
								  compilerTesting,
							 | 
						||
| 
								 | 
							
								  core,
							 | 
						||
| 
								 | 
							
								  coreTesting,
							 | 
						||
| 
								 | 
							
								  elements,
							 | 
						||
| 
								 | 
							
								  forms,
							 | 
						||
| 
								 | 
							
								  http,
							 | 
						||
| 
								 | 
							
								  httpTesting,
							 | 
						||
| 
								 | 
							
								  platformBrowser,
							 | 
						||
| 
								 | 
							
								  platformBrowserTesting,
							 | 
						||
| 
								 | 
							
								  platformBrowserDynamic,
							 | 
						||
| 
								 | 
							
								  platformServer,
							 | 
						||
| 
								 | 
							
								  platformServerTesting,
							 | 
						||
| 
								 | 
							
								  platformWebworker,
							 | 
						||
| 
								 | 
							
								  platformWebworkerDynamic,
							 | 
						||
| 
								 | 
							
								  router,
							 | 
						||
| 
								 | 
							
								  routerTesting,
							 | 
						||
| 
								 | 
							
								  serviceWorker,
							 | 
						||
| 
								 | 
							
								  upgrade,
							 | 
						||
| 
								 | 
							
								};
							 |