42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.3 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 forms from '@angular/forms';
 | 
						|
import * as http from '@angular/http';
 | 
						|
import * as httpTesting from '@angular/http/testing';
 | 
						|
import * as platformBrowserDynamic from '@angular/platform-browser-dynamic';
 | 
						|
import * as platformBrowser from '@angular/platform-browser';
 | 
						|
import * as platformBrowserTesting from '@angular/platform-browser/testing';
 | 
						|
import * as platformServer from '@angular/platform-server';
 | 
						|
import * as platformServerTesting from '@angular/platform-server/testing';
 | 
						|
import * as router from '@angular/router';
 | 
						|
import * as routerTesting from '@angular/router/testing';
 | 
						|
import * as upgrade from '@angular/upgrade';
 | 
						|
 | 
						|
export default {
 | 
						|
  compiler,
 | 
						|
  compilerTesting,
 | 
						|
  core,
 | 
						|
  coreTesting,
 | 
						|
  forms,
 | 
						|
  http,
 | 
						|
  httpTesting,
 | 
						|
  platformBrowser,
 | 
						|
  platformBrowserTesting,
 | 
						|
  platformBrowserDynamic,
 | 
						|
  platformServer,
 | 
						|
  platformServerTesting,
 | 
						|
  router,
 | 
						|
  routerTesting,
 | 
						|
  upgrade
 | 
						|
};
 |