schema.d.ts 588 B

1234567891011121314151617
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.io/license
  7. */
  8. export interface Schema {
  9. /** Name of the project. */
  10. project: string;
  11. /** Whether gesture support should be set up. */
  12. gestures: boolean;
  13. /** Whether Angular browser animations should be set up. */
  14. animations: boolean;
  15. /** Name of pre-built theme to install. */
  16. theme: 'indigo-pink' | 'deeppurple-amber' | 'pink-bluegrey' | 'purple-green' | 'custom';
  17. }