I put an extractor into your extract so you can extract while you extract. This allows integrators to call Extractor as a library. Also refactors Extractor a bit so that callers need fewer arguments or arguments that are at the right semantic level. The refactoring causes no function change.
		
			
				
	
	
		
			15 lines
		
	
	
		
			522 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			522 B
		
	
	
	
		
			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
 | 
						|
 */
 | 
						|
 | 
						|
export {CodeGenerator} from './src/codegen';
 | 
						|
export {Extractor} from './src/extractor';
 | 
						|
export {NodeReflectorHostContext, ReflectorHost, ReflectorHostContext} from './src/reflector_host';
 | 
						|
export {StaticReflector, StaticReflectorHost, StaticSymbol} from './src/static_reflector';
 | 
						|
 | 
						|
export * from '@angular/tsc-wrapped';
 |