react-native-webrtc
Version:
WebRTC for React Native
13 lines (12 loc) • 326 B
TypeScript
export interface RTCRtpHeaderExtensionInit {
id: number;
uri: string;
encrypted: boolean;
}
export default class RTCRtpHeaderExtension {
readonly id: number;
readonly uri: string;
readonly encrypted: boolean;
constructor(init: RTCRtpHeaderExtensionInit);
toJSON(): RTCRtpHeaderExtensionInit;
}