@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
17 lines (16 loc) • 676 B
TypeScript
import ProgressiveMuxingInformation from './ProgressiveMuxingInformation';
import ProgressiveTsMuxingInformationByteRanges from './ProgressiveTsMuxingInformationByteRanges';
/**
* @export
* @class ProgressiveTsMuxingInformation
*/
export declare class ProgressiveTsMuxingInformation extends ProgressiveMuxingInformation {
/**
* Byte ranges for the segments within the TS file
* @type {ProgressiveTsMuxingInformationByteRanges[]}
* @memberof ProgressiveTsMuxingInformation
*/
byteRanges?: ProgressiveTsMuxingInformationByteRanges[];
constructor(obj?: Partial<ProgressiveTsMuxingInformation>);
}
export default ProgressiveTsMuxingInformation;