UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

23 lines (22 loc) 495 B
import Muxing from './Muxing'; import MuxingType from './MuxingType'; /** * @export * @class MxfMuxing */ export declare class MxfMuxing extends Muxing { /** * Discriminator property for Muxing * @type {string} * @memberof MxfMuxing */ readonly type: MuxingType; /** * Name of the output file (required) * @type {string} * @memberof MxfMuxing */ filename?: string; constructor(obj?: Partial<MxfMuxing>); } export default MxfMuxing;