Interface Connection

A connection to a client

Connection

interface Connection {
    id: string;
    label: string;
    socket: any;
}

Properties

Properties

id: string

ID of the connection (matches ID of the player)

label: string

Label of the connection

socket: any

Socket.io socket of the connection

Generated using TypeDoc