UNPKG

use-app-events

Version:

Event system for global communication in vanilla JavaScript and React.

5 lines (4 loc) 273 B
import { BroadcastMessage } from '../types'; /** Create a broadcast message object from arguments. */ declare const createMessage: <Payload, Type extends string = string>(eventType: Type, payload?: Payload) => BroadcastMessage<Payload, Type>; export default createMessage;