UNPKG

@ticatec/iframe-message-bridge

Version:

A lightweight TypeScript library for reliable communication between parent window and multiple iframes using postMessage, supporting one-way messages, request-response patterns, broadcast messaging, timeout handling, and automatic resource cleanup.

8 lines (7 loc) 145 B
export type RequestMessage = { __bridge__: true; type: 'request'; requestId: string | null; eventName: string; data: any; };