UNPKG

@kaltura-ng/kaltura-client

Version:
59 lines 3.32 kB
var __extends = (this && this.__extends) || (function () { var 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 function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); import { KalturaObjectBase } from '../kaltura-object-base'; import { KalturaTypesFactory } from '../kaltura-types-factory'; var KalturaContainerFormat = (function (_super) { __extends(KalturaContainerFormat, _super); function KalturaContainerFormat(value) { var _this = _super.call(this) || this; _this._value = value + ''; return _this; } KalturaContainerFormat.prototype.equals = function (obj) { return obj && obj.toString() === this._value; }; KalturaContainerFormat.prototype.toString = function () { return this._value; }; KalturaContainerFormat.applehttp = new KalturaContainerFormat('applehttp'); KalturaContainerFormat.avi = new KalturaContainerFormat('avi'); KalturaContainerFormat.bmp = new KalturaContainerFormat('bmp'); KalturaContainerFormat.copy = new KalturaContainerFormat('copy'); KalturaContainerFormat.flv = new KalturaContainerFormat('flv'); KalturaContainerFormat.hls = new KalturaContainerFormat('hls'); KalturaContainerFormat.isma = new KalturaContainerFormat('isma'); KalturaContainerFormat.ismv = new KalturaContainerFormat('ismv'); KalturaContainerFormat.jpg = new KalturaContainerFormat('jpg'); KalturaContainerFormat.m2ts = new KalturaContainerFormat('m2ts'); KalturaContainerFormat.m4v = new KalturaContainerFormat('m4v'); KalturaContainerFormat.mkv = new KalturaContainerFormat('mkv'); KalturaContainerFormat.mov = new KalturaContainerFormat('mov'); KalturaContainerFormat.mp3 = new KalturaContainerFormat('mp3'); KalturaContainerFormat.mp4 = new KalturaContainerFormat('mp4'); KalturaContainerFormat.mpeg = new KalturaContainerFormat('mpeg'); KalturaContainerFormat.mpegts = new KalturaContainerFormat('mpegts'); KalturaContainerFormat.mxf = new KalturaContainerFormat('mxf'); KalturaContainerFormat.ogg = new KalturaContainerFormat('ogg'); KalturaContainerFormat.ogv = new KalturaContainerFormat('ogv'); KalturaContainerFormat.pdf = new KalturaContainerFormat('pdf'); KalturaContainerFormat.png = new KalturaContainerFormat('png'); KalturaContainerFormat.swf = new KalturaContainerFormat('swf'); KalturaContainerFormat.wav = new KalturaContainerFormat('wav'); KalturaContainerFormat.webm = new KalturaContainerFormat('webm'); KalturaContainerFormat.wma = new KalturaContainerFormat('wma'); KalturaContainerFormat.wmv = new KalturaContainerFormat('wmv'); KalturaContainerFormat.wvm = new KalturaContainerFormat('wvm'); KalturaContainerFormat._3gp = new KalturaContainerFormat('3gp'); return KalturaContainerFormat; }(KalturaObjectBase)); export { KalturaContainerFormat }; KalturaTypesFactory.registerType('KalturaContainerFormat', KalturaContainerFormat); //# sourceMappingURL=KalturaContainerFormat.js.map