/** * @export * @class TsStreamConfiguration */ export declare class TsStreamConfiguration { /** * The UUID of the stream to which this configuration belongs to. This has to be a ID of a stream that has been added to the current muxing. (required) * @type {string} * @memberof TsStreamConfiguration */ streamId?: string; /** * An integer value. MPEG Transport Stream Packet Identifier (PID) for this stream. (required) * @type {number} * @memberof TsStreamConfiguration */ pid?: number; constructor(obj?: Partial); } export default TsStreamConfiguration;