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.

7 lines (6 loc) 121 B
export interface BroadcastMessage { __bridge__: true; type: 'broadcast'; eventName: string; data: any; }