2018-05-08 13:01:34 +02:00
|
|
|
import { Connection } from '../../../OpenVidu/Connection';
|
2018-04-26 15:33:47 +02:00
|
|
|
export interface InboundStreamOptions {
|
|
|
|
id: string;
|
|
|
|
connection: Connection;
|
|
|
|
frameRate: number;
|
|
|
|
recvAudio: boolean;
|
|
|
|
recvVideo: boolean;
|
|
|
|
typeOfVideo: string;
|
|
|
|
}
|