mirror of https://github.com/OpenVidu/openvidu.git
10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
![]() |
import { Connection } from '../../..';
|
||
|
export interface InboundStreamOptions {
|
||
|
id: string;
|
||
|
connection: Connection;
|
||
|
frameRate: number;
|
||
|
recvAudio: boolean;
|
||
|
recvVideo: boolean;
|
||
|
typeOfVideo: string;
|
||
|
}
|