UNPKG

978 BJavaScriptView Raw
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 ...).
4Object.defineProperty(exports, "__esModule", { value: true });
5exports.ViewEncapsulation = exports.Style = void 0;
6/**
7 * The file extension or preprocessor to use for style files.
8 */
9var Style;
10(function (Style) {
11 Style["Css"] = "css";
12 Style["Less"] = "less";
13 Style["Sass"] = "sass";
14 Style["Scss"] = "scss";
15 Style["Styl"] = "styl";
16})(Style = exports.Style || (exports.Style = {}));
17/**
18 * The view encapsulation strategy to use in the new app.
19 */
20var ViewEncapsulation;
21(function (ViewEncapsulation) {
22 ViewEncapsulation["Emulated"] = "Emulated";
23 ViewEncapsulation["Native"] = "Native";
24 ViewEncapsulation["None"] = "None";
25 ViewEncapsulation["ShadowDom"] = "ShadowDom";
26})(ViewEncapsulation = exports.ViewEncapsulation || (exports.ViewEncapsulation = {}));