| 
									
										
										
										
											2019-09-20 16:05:45 +01:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-09-20 16:05:45 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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 interface Schema { | 
					
						
							|  |  |  |   /** | 
					
						
							|  |  |  |    * The name of the project. | 
					
						
							|  |  |  |    */ | 
					
						
							|  |  |  |   name?: string; | 
					
						
							| 
									
										
										
										
											2020-09-02 16:16:10 +01:00
										 |  |  |   /** | 
					
						
							|  |  |  |    * Will this project use $localize at runtime? | 
					
						
							|  |  |  |    * | 
					
						
							|  |  |  |    * If true then the dependency is included in the `dependencies` section of packge.json, rather | 
					
						
							|  |  |  |    * than `devDependencies`. | 
					
						
							|  |  |  |    */ | 
					
						
							|  |  |  |   useAtRuntime?: boolean; | 
					
						
							| 
									
										
										
										
											2019-09-20 16:05:45 +01:00
										 |  |  | } |