schema.js 926 B

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