Interface RegionMessage

A message delivered to this region. from is the SENDER's region, attached by the host (unspoofable, T19); data is the sender-provided payload.

interface RegionMessage {
    data: unknown;
    from: string;
}

Properties

Properties

data: unknown
from: string