| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- "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 });
- /**
- * Specify which package manager tool to use.
- */
- var PackageManager;
- (function (PackageManager) {
- PackageManager["Cnpm"] = "cnpm";
- PackageManager["Npm"] = "npm";
- PackageManager["Pnpm"] = "pnpm";
- PackageManager["Yarn"] = "yarn";
- })(PackageManager = exports.PackageManager || (exports.PackageManager = {}));
- /**
- * Specifies the change detection strategy.
- */
- var ChangeDetection;
- (function (ChangeDetection) {
- ChangeDetection["Default"] = "Default";
- ChangeDetection["OnPush"] = "OnPush";
- })(ChangeDetection = exports.ChangeDetection || (exports.ChangeDetection = {}));
- /**
- * The file extension or preprocessor to use for style files.
- */
- var Style;
- (function (Style) {
- Style["Css"] = "css";
- Style["Less"] = "less";
- Style["Sass"] = "sass";
- Style["Scss"] = "scss";
- Style["Styl"] = "styl";
- })(Style = exports.Style || (exports.Style = {}));
- /**
- * Specifies the view encapsulation strategy.
- */
- var ViewEncapsulation;
- (function (ViewEncapsulation) {
- ViewEncapsulation["Emulated"] = "Emulated";
- ViewEncapsulation["Native"] = "Native";
- ViewEncapsulation["None"] = "None";
- ViewEncapsulation["ShadowDom"] = "ShadowDom";
- })(ViewEncapsulation = exports.ViewEncapsulation || (exports.ViewEncapsulation = {}));
- /**
- * The scope for the generated routing.
- */
- var RoutingScope;
- (function (RoutingScope) {
- RoutingScope["Child"] = "Child";
- RoutingScope["Root"] = "Root";
- })(RoutingScope = exports.RoutingScope || (exports.RoutingScope = {}));
|