react-native-webrtc
Version:
WebRTC for React Native
13 lines (12 loc) • 326 B
TypeScript
export interface RTCSessionDescriptionInit {
sdp: string;
type: string | null;
}
export default class RTCSessionDescription {
_sdp: string;
_type: string | null;
constructor(info?: RTCSessionDescriptionInit);
get sdp(): string;
get type(): string | null;
toJSON(): RTCSessionDescriptionInit;
}