node-datachannel
Version:
WebRTC For Node.js and Electron. libdatachannel node bindings.
34 lines (23 loc) • 907 B
text/typescript
import RTCDataChannel from './RTCDataChannel';
import RTCIceCandidate from './RTCIceCandidate';
export class RTCPeerConnectionIceEvent extends Event implements globalThis.RTCPeerConnectionIceEvent {
#candidate: RTCIceCandidate;
constructor(candidate: RTCIceCandidate) {
super('icecandidate');
this.#candidate = candidate;
}
get candidate(): RTCIceCandidate {
return this.#candidate;
}
}
export class RTCDataChannelEvent extends Event implements globalThis.RTCDataChannelEvent {
#channel: RTCDataChannel;
constructor(type: string, eventInitDict: globalThis.RTCDataChannelEventInit) {
super(type);
if (type && !eventInitDict.channel) throw new TypeError('channel member is required');
this.#channel = eventInitDict?.channel as RTCDataChannel;
}
get channel(): RTCDataChannel {
return this.#channel;
}
}