UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

26 lines (25 loc) 840 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DtsPassthroughAudioConfiguration = void 0; const CodecConfigType_1 = require("./CodecConfigType"); const CodecConfiguration_1 = require("./CodecConfiguration"); /** * @export * @class DtsPassthroughAudioConfiguration */ class DtsPassthroughAudioConfiguration extends CodecConfiguration_1.default { constructor(obj) { super(obj); /** * Discriminator property for CodecConfiguration * @type {string} * @memberof DtsPassthroughAudioConfiguration */ this.type = CodecConfigType_1.default.DTS_PASSTHROUGH; if (!obj) { return; } } } exports.DtsPassthroughAudioConfiguration = DtsPassthroughAudioConfiguration; exports.default = DtsPassthroughAudioConfiguration;