schema.js 955 B

123456789101112131415161718192021
  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.Implement = void 0;
  6. var Implement;
  7. (function (Implement) {
  8. Implement["CanActivate"] = "CanActivate";
  9. Implement["CanActivateChild"] = "CanActivateChild";
  10. Implement["CanDeactivate"] = "CanDeactivate";
  11. Implement["CanMatch"] = "CanMatch";
  12. })(Implement || (exports.Implement = Implement = {}));
  13. /**
  14. * The separator character to use before the type within the generated file's name. For
  15. * example, if you set the option to `.`, the file will be named `example.guard.ts`.
  16. */
  17. var TypeSeparator;
  18. (function (TypeSeparator) {
  19. TypeSeparator["Empty"] = "-";
  20. TypeSeparator["TypeSeparator"] = ".";
  21. })(TypeSeparator || (exports.TypeSeparator = TypeSeparator = {}));