We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0970f7 commit a855e68Copy full SHA for a855e68
src/lib/types.ts
@@ -90,12 +90,10 @@ export type RTCIceConnectionState = "checking" | "closed" | "completed" | "conne
90
export type RTCIceGathererState = "complete" | "gathering" | "new";
91
export type RTCIceGatheringState = "complete" | "gathering" | "new";
92
export type RTCSignalingState = "closed" | "have-local-offer" | "have-local-pranswer" | "have-remote-offer" | "have-remote-pranswer" | "stable";
93
-export type RTCIceMode = "auto" | "controlling" | "controlled"
94
95
export interface LocalDescriptionInit {
96
iceUfrag?: string;
97
icePwd?: string;
98
- iceMode?: RTCIceMode
99
}
100
101
export interface DataChannelInitConfig {
0 commit comments