Interface PlayerVoiceEvents

      interface PlayerVoiceEvents {
          channelJoin: ((joined) => void);
          channelLeave: ((left) => void);
          channelMove: ((from, to) => void);
      }

      Properties

      channelJoin: ((joined) => void)

      Type declaration

        • (joined): void
        • Parameters

          • joined: string

          Returns void

      channelLeave: ((left) => void)

      Type declaration

        • (left): void
        • Parameters

          • left: string

          Returns void

      channelMove: ((from, to) => void)

      Type declaration

        • (from, to): void
        • Parameters

          • from: string
          • to: string

          Returns void