-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathschema.js
22 lines (22 loc) · 903 Bytes
/
schema.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"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 = exports.RoutingScope = void 0;
/**
* The scope for the new routing module.
*/
var RoutingScope;
(function (RoutingScope) {
RoutingScope["Child"] = "Child";
RoutingScope["Root"] = "Root";
})(RoutingScope || (exports.RoutingScope = RoutingScope = {}));
/**
* 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.module.ts`.
*/
var TypeSeparator;
(function (TypeSeparator) {
TypeSeparator["Empty"] = "-";
TypeSeparator["TypeSeparator"] = ".";
})(TypeSeparator || (exports.TypeSeparator = TypeSeparator = {}));