Current section
Files
Jump to
Current section
Files
src/gossamer/message_channel.ffi.mjs
// src/gossamer/message_channel.ffi.ts
var new_ = () => {
return new MessageChannel();
};
var port1 = (channel) => {
return channel.port1;
};
var port2 = (channel) => {
return channel.port2;
};
export {
new_,
port1,
port2
};