schema.d.ts 479 B

12345678910111213141516171819202122
  1. /**
  2. * @license
  3. * Copyright Google Inc. 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. /**
  10. * The name of the project.
  11. */
  12. project: string;
  13. /**
  14. * The target to apply service worker to.
  15. */
  16. target: string;
  17. /**
  18. * The configuration to apply service worker to.
  19. */
  20. configuration: string;
  21. }