shell-mirror
Version:
Access your Mac shell from any device securely. Perfect for mobile coding with Claude Code CLI, Gemini CLI, and any shell tool.
21 lines (18 loc) • 384 B
JavaScript
;
function RTCPeerConnectionIceEvent(type, eventInitDict) {
Object.defineProperties(this, {
type: {
value: type,
enumerable: true
},
candidate: {
value: eventInitDict.candidate,
enumerable: true
},
target: {
value: eventInitDict.target,
enumerable: true
}
});
}
module.exports = RTCPeerConnectionIceEvent;