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 VideoBB = /** @class */ (function (_super) { __extends(VideoBB, _super); function VideoBB() { var _this = _super.call(this) || this; _this.obj.type = block_obj_enums_1.BlockTypes.VIDEO; return _this; } VideoBB.prototype.addVideo = function (media) { this.obj.content.video = helpers_1.resolveMediaId(media); return this; }; return VideoBB; }(block_obj_builder_1.default)); exports.default = VideoBB;