Current section

Files

Jump to
gossamer src gossamer message_channel.ffi.ts
Raw

src/gossamer/message_channel.ffi.ts

import type * as $messageChannel from "$/gossamer/gossamer/message_channel.mjs";
export const new_: typeof $messageChannel.new$ = () => {
const channel = new MessageChannel();
return [channel.port1, channel.port2];
};