mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 09:03:29 +01:00
Use import/export since we are using babel, removed unused imports
This commit is contained in:
@@ -1,11 +1,9 @@
|
||||
"use strict";
|
||||
|
||||
var ServerChannel = require("./ServerChannel.js");
|
||||
import ServerChannel from "./ServerChannel";
|
||||
|
||||
class VoiceChannel extends ServerChannel{
|
||||
export default class VoiceChannel extends ServerChannel{
|
||||
constructor(data, client, server){
|
||||
super(data, client, server);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = VoiceChannel;
|
||||
Reference in New Issue
Block a user