UNPKG

@aurigma/design-editor-iframe

Version:

Using this module you can embed Design Editor (a part of Customer's Canvas) to your page through the IFrame API.

37 lines 1.31 kB
var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); /** * obsolete method * @internal */ import { Exception } from "@aurigma/design-atoms-model/Exception"; export function create(msg) { var ex = new Error(msg); ex["isIframeApiException"] = true; return ex; } export function isIframeApiException(ex) { return ex["isIframeApiException"] === true; } var ServerException = /** @class */ (function (_super) { __extends(ServerException, _super); function ServerException(response) { var _this = _super.call(this, response.value) || this; _this.response = response; return _this; } return ServerException; }(Exception)); export { ServerException }; //# sourceMappingURL=Exception.js.map