Interface LiveCallbacks

Callbacks for the live API.

interface LiveCallbacks {
    onclose?: null | (e: CloseEvent) => void;
    onerror?: null | (e: ErrorEvent) => void;
    onmessage: (e: LiveServerMessage) => void;
    onopen?: null | () => void;
}

Properties

onclose?: null | (e: CloseEvent) => void
onerror?: null | (e: ErrorEvent) => void
onmessage: (e: LiveServerMessage) => void
onopen?: null | () => void
MMNEPVFCICPMFPCPTTAAATR