ConnectionState

State of a player connection between discord voice server and the lavalink node

enum ConnectionState {
  CONNECTING = 0,
  CONNECTED = 1,
  DISCONNECTED = 2
}

Last updated