Last change
on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[6a3a178] | 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.ViewEncapsulation = exports.Style = exports.ChangeDetection = void 0;
|
---|
| 6 | /**
|
---|
| 7 | * The change detection strategy to use in the new component.
|
---|
| 8 | */
|
---|
| 9 | var ChangeDetection;
|
---|
| 10 | (function (ChangeDetection) {
|
---|
| 11 | ChangeDetection["Default"] = "Default";
|
---|
| 12 | ChangeDetection["OnPush"] = "OnPush";
|
---|
| 13 | })(ChangeDetection = exports.ChangeDetection || (exports.ChangeDetection = {}));
|
---|
| 14 | /**
|
---|
| 15 | * The file extension or preprocessor to use for style files, or 'none' to skip generating
|
---|
| 16 | * the style file.
|
---|
| 17 | */
|
---|
| 18 | var Style;
|
---|
| 19 | (function (Style) {
|
---|
| 20 | Style["Css"] = "css";
|
---|
| 21 | Style["Less"] = "less";
|
---|
| 22 | Style["None"] = "none";
|
---|
| 23 | Style["Sass"] = "sass";
|
---|
| 24 | Style["Scss"] = "scss";
|
---|
| 25 | })(Style = exports.Style || (exports.Style = {}));
|
---|
| 26 | /**
|
---|
| 27 | * The view encapsulation strategy to use in the new component.
|
---|
| 28 | */
|
---|
| 29 | var ViewEncapsulation;
|
---|
| 30 | (function (ViewEncapsulation) {
|
---|
| 31 | ViewEncapsulation["Emulated"] = "Emulated";
|
---|
| 32 | ViewEncapsulation["None"] = "None";
|
---|
| 33 | ViewEncapsulation["ShadowDom"] = "ShadowDom";
|
---|
| 34 | })(ViewEncapsulation = exports.ViewEncapsulation || (exports.ViewEncapsulation = {}));
|
---|
Note:
See
TracBrowser
for help on using the repository browser.