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.OutputHashing = exports.InlineStyleLanguage = exports.I18NMissingTranslation = exports.CrossOrigin = exports.Type = void 0;
|
---|
6 | /**
|
---|
7 | * The type of budget.
|
---|
8 | */
|
---|
9 | var Type;
|
---|
10 | (function (Type) {
|
---|
11 | Type["All"] = "all";
|
---|
12 | Type["AllScript"] = "allScript";
|
---|
13 | Type["Any"] = "any";
|
---|
14 | Type["AnyComponentStyle"] = "anyComponentStyle";
|
---|
15 | Type["AnyScript"] = "anyScript";
|
---|
16 | Type["Bundle"] = "bundle";
|
---|
17 | Type["Initial"] = "initial";
|
---|
18 | })(Type = exports.Type || (exports.Type = {}));
|
---|
19 | /**
|
---|
20 | * Define the crossorigin attribute setting of elements that provide CORS support.
|
---|
21 | */
|
---|
22 | var CrossOrigin;
|
---|
23 | (function (CrossOrigin) {
|
---|
24 | CrossOrigin["Anonymous"] = "anonymous";
|
---|
25 | CrossOrigin["None"] = "none";
|
---|
26 | CrossOrigin["UseCredentials"] = "use-credentials";
|
---|
27 | })(CrossOrigin = exports.CrossOrigin || (exports.CrossOrigin = {}));
|
---|
28 | /**
|
---|
29 | * How to handle missing translations for i18n.
|
---|
30 | */
|
---|
31 | var I18NMissingTranslation;
|
---|
32 | (function (I18NMissingTranslation) {
|
---|
33 | I18NMissingTranslation["Error"] = "error";
|
---|
34 | I18NMissingTranslation["Ignore"] = "ignore";
|
---|
35 | I18NMissingTranslation["Warning"] = "warning";
|
---|
36 | })(I18NMissingTranslation = exports.I18NMissingTranslation || (exports.I18NMissingTranslation = {}));
|
---|
37 | /**
|
---|
38 | * The stylesheet language to use for the application's inline component styles.
|
---|
39 | */
|
---|
40 | var InlineStyleLanguage;
|
---|
41 | (function (InlineStyleLanguage) {
|
---|
42 | InlineStyleLanguage["Css"] = "css";
|
---|
43 | InlineStyleLanguage["Less"] = "less";
|
---|
44 | InlineStyleLanguage["Sass"] = "sass";
|
---|
45 | InlineStyleLanguage["Scss"] = "scss";
|
---|
46 | })(InlineStyleLanguage = exports.InlineStyleLanguage || (exports.InlineStyleLanguage = {}));
|
---|
47 | /**
|
---|
48 | * Define the output filename cache-busting hashing mode.
|
---|
49 | */
|
---|
50 | var OutputHashing;
|
---|
51 | (function (OutputHashing) {
|
---|
52 | OutputHashing["All"] = "all";
|
---|
53 | OutputHashing["Bundles"] = "bundles";
|
---|
54 | OutputHashing["Media"] = "media";
|
---|
55 | OutputHashing["None"] = "none";
|
---|
56 | })(OutputHashing = exports.OutputHashing || (exports.OutputHashing = {}));
|
---|