Package-level declarations
Types
Link copied to clipboard
The MessageChannel
interface of the Channel Messaging API allows us to create a new message channel and send data through it via its two MessagePort properties.
Link copied to clipboard
open class MessageEvent<out D : JsAny?>(val type: EventType<MessageEvent<D>>, init: MessageEventInit<D> = definedExternally) : Event
The MessageEvent
interface represents a message received by a target object.
Link copied to clipboard
Link copied to clipboard
interface MessageEventSource
Union of:
Link copied to clipboard
Link copied to clipboard
The MessagePort
interface of the Channel Messaging API represents one of the two ports of a MessageChannel, allowing messages to be sent from one port and listening out for them arriving at the other.