schema.js 655 B

1234567891011121314
  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 = void 0;
  6. /**
  7. * The separator character to use before the type within the generated file's name. For
  8. * example, if you set the option to `.`, the file will be named `example.interceptor.ts`.
  9. */
  10. var TypeSeparator;
  11. (function (TypeSeparator) {
  12. TypeSeparator["Empty"] = "-";
  13. TypeSeparator["TypeSeparator"] = ".";
  14. })(TypeSeparator || (exports.TypeSeparator = TypeSeparator = {}));