Type Alias SocketsValues<Sockets>

SocketsValues<Sockets>: {
    [K in keyof Sockets]: SocketValueWithDatastructure<SocketValueType<Sockets[K]["type"]>, Sockets[K]["datastructure"]>
}

Type Parameters

  • Sockets extends {
        [key in string]: Socket
    }