mirror of https://github.com/OpenVidu/openvidu.git
16 lines
368 B
TypeScript
16 lines
368 B
TypeScript
import { Connection } from '../../../OpenVidu/Connection';
|
|
export interface InboundStreamOptions {
|
|
id: string;
|
|
connection: Connection;
|
|
hasAudio: boolean;
|
|
hasVideo: boolean;
|
|
audioActive: boolean;
|
|
videoActive: boolean;
|
|
typeOfVideo: string;
|
|
frameRate: number;
|
|
videoDimensions: {
|
|
width: number;
|
|
height: number;
|
|
};
|
|
}
|