import SrtInput from './SrtInput'; /** * @export * @class BackupSrtInputs */ export declare class BackupSrtInputs { /** * When there is no input signal present for this number of seconds, the encoder will switch to the next input * @type {number} * @memberof BackupSrtInputs */ delayThreshold?: number; /** * @type {SrtInput[]} * @memberof BackupSrtInputs */ srtInputs?: SrtInput[]; constructor(obj?: Partial); } export default BackupSrtInputs;