Interface Callbacks

interface Callbacks {
    onError: ((error: EvoluError) => void);
    onReceive: (() => void);
    onSyncStateChange: ((state: SyncState) => void);
}

Properties

onError: ((error: EvoluError) => void)
onReceive: (() => void)
onSyncStateChange: ((state: SyncState) => void)