| 
									
										
										
										
											2016-06-23 09:47:54 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  | import {NgModule} from '@angular/core'; | 
					
						
							|  |  |  | import {COMMON_DIRECTIVES} from './src/common_directives'; | 
					
						
							|  |  |  | import {COMMON_PIPES} from './src/pipes'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | export * from './src/pipes'; | 
					
						
							|  |  |  | export * from './src/directives'; | 
					
						
							| 
									
										
										
										
											2016-06-08 10:44:04 -07:00
										 |  |  | export * from './src/forms-deprecated'; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | export * from './src/common_directives'; | 
					
						
							|  |  |  | export * from './src/location'; | 
					
						
							| 
									
										
										
										
											2016-07-18 03:50:31 -07:00
										 |  |  | export {NgLocalization} from './src/localization'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Note: This does not contain the location providers,
 | 
					
						
							|  |  |  | // as they need some platform specific implementations to work.
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * The module that includes all the basic Angular directives like {@link NgIf}, ${link NgFor}, ... | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @experimental | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | @NgModule( | 
					
						
							|  |  |  |     {declarations: [COMMON_DIRECTIVES, COMMON_PIPES], exports: [COMMON_DIRECTIVES, COMMON_PIPES]}) | 
					
						
							|  |  |  | export class CommonModule { | 
					
						
							|  |  |  | } |