Interface SendOptions

interface SendOptions {
    event: string;
    force?: boolean;
    payload: SerializableValue;
}

Hierarchy (view full)

Properties

Properties

event: string

The event ID.

force?: boolean

Ignore (most) errors.

The payload. Ensure this can be serialized to JSON, otherwise some data may be lost.