UNPKG

block-obj-builder

Version:

Block object builder

33 lines (32 loc) 1.33 kB
"use strict"; 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 (Object.prototype.hasOwnProperty.call(b, 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 __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); var block_obj_enums_1 = require("../../const/block-obj-enums"); var helpers_1 = require("../../helpers/helpers"); var block_obj_builder_1 = require("./block-obj-builder"); var ImageBB = /** @class */ (function (_super) { __extends(ImageBB, _super); function ImageBB() { var _this = _super.call(this) || this; _this.obj.type = block_obj_enums_1.BlockTypes.IMAGE; return _this; } ImageBB.prototype.addImage = function (media) { this.obj.content.image = helpers_1.resolveMediaId(media); return this; }; return ImageBB; }(block_obj_builder_1.default)); exports.default = ImageBB;