| 1234567891011121314 |
- "use strict";
- // THIS FILE IS AUTOMATICALLY GENERATED. TO UPDATE THIS FILE YOU NEED TO CHANGE THE
- // CORRESPONDING JSON SCHEMA FILE, THEN RUN devkit-admin build (or bazel build ...).
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.TypeSeparator = void 0;
- /**
- * The separator character to use before the type within the generated file's name. For
- * example, if you set the option to `.`, the file will be named `example.pipe.ts`.
- */
- var TypeSeparator;
- (function (TypeSeparator) {
- TypeSeparator["Empty"] = "-";
- TypeSeparator["TypeSeparator"] = ".";
- })(TypeSeparator || (exports.TypeSeparator = TypeSeparator = {}));
|