template-host.js 834 B

12345678910111213141516171819202122232425262728
  1. "use strict";
  2. /*!
  3. * devextreme-angular
  4. * Version: 19.1.16
  5. * Build date: Tue Oct 18 2022
  6. *
  7. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  8. *
  9. * This software may be modified and distributed under the terms
  10. * of the MIT license. See the LICENSE file in the root of the project for details.
  11. *
  12. * https://github.com/DevExpress/devextreme-angular
  13. */
  14. Object.defineProperty(exports, "__esModule", { value: true });
  15. ;
  16. var DxTemplateHost = (function () {
  17. function DxTemplateHost() {
  18. }
  19. DxTemplateHost.prototype.setHost = function (host) {
  20. this.host = host;
  21. };
  22. DxTemplateHost.prototype.setTemplate = function (template) {
  23. this.host.setTemplate(template);
  24. };
  25. return DxTemplateHost;
  26. }());
  27. exports.DxTemplateHost = DxTemplateHost;
  28. //# sourceMappingURL=template-host.js.map