import BitmovinResponse from './BitmovinResponse'; /** * @export * @class MediaStream */ export declare class MediaStream extends BitmovinResponse { /** * Position of the stream in the media, starting from 0. * @type {number} * @memberof MediaStream */ position?: number; /** * Duration of the stream in seconds * @type {number} * @memberof MediaStream */ duration?: number; /** * Codec of the stream * @type {string} * @memberof MediaStream */ codec?: string; constructor(obj?: Partial); } export default MediaStream;