2019-09-20 11:05:45 -04:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2019-09-20 11:05:45 -04: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 11:16:10 -04: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 11:05:45 -04:00
|
|
|
}
|