schema.js 903 B

12345678910111213141516171819202122
  1. "use strict";
  2. // THIS FILE IS AUTOMATICALLY GENERATED. TO UPDATE THIS FILE YOU NEED TO CHANGE THE
  3. // CORRESPONDING JSON SCHEMA FILE, THEN RUN devkit-admin build (or bazel build ...).
  4. Object.defineProperty(exports, "__esModule", { value: true });
  5. exports.TypeSeparator = exports.RoutingScope = void 0;
  6. /**
  7. * The scope for the new routing module.
  8. */
  9. var RoutingScope;
  10. (function (RoutingScope) {
  11. RoutingScope["Child"] = "Child";
  12. RoutingScope["Root"] = "Root";
  13. })(RoutingScope || (exports.RoutingScope = RoutingScope = {}));
  14. /**
  15. * The separator character to use before the type within the generated file's name. For
  16. * example, if you set the option to `.`, the file will be named `example.module.ts`.
  17. */
  18. var TypeSeparator;
  19. (function (TypeSeparator) {
  20. TypeSeparator["Empty"] = "-";
  21. TypeSeparator["TypeSeparator"] = ".";
  22. })(TypeSeparator || (exports.TypeSeparator = TypeSeparator = {}));