mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-01 08:30:08 +00:00
10 lines
190 B
JavaScript
10 lines
190 B
JavaScript
"use strict";
|
|
|
|
import ServerChannel from "./ServerChannel";
|
|
|
|
export default class VoiceChannel extends ServerChannel{
|
|
constructor(data, client, server){
|
|
super(data, client, server);
|
|
}
|
|
}
|