Interface SyncServerEvents

Events emitted by SyncServer.

interface SyncServerEvents {
    connect: ((connection: SyncConnection<Duplex>) => void);
    disconnect: ((connection: SyncConnection<Duplex>) => void);
}

Properties

Properties

connect: ((connection: SyncConnection<Duplex>) => void)
disconnect: ((connection: SyncConnection<Duplex>) => void)