API reference › @evolu/web › createMessageChannel
function createMessageChannel<Input, Output>(): MessageChannel<Input, Output>;
Defined in: Worker.ts:42
Creates a MessageChannel from a Web MessageChannel.
Example
const channel = createMessageChannel<Request, Response>();
channel.port1.onMessage = (response) => console.log(response);
channel.port1.postMessage({ type: "ping" });