你好,我有一个有趣的问题。 我有一个意味着在Discord中创建频道实例的课程。 我正在使用具有
的Message构造函数this.channel = new GuildChannel(client, client.channels.get(this.channelID));
仅适用于消息结构
当我在其他文件(同一文件夹)中使用GuildChannel构造函数时
我收到了下一个错误。 TypeError: GuildChannel is not a constructor
相关代码: hastebin because I cannot post more than 2 links
以下是加速链接:
1)消息结构
https://github.com/TheOnlyArtz/ArtzyCord/blob/master/Models/Message.js#L21
2)邀请结构(发生错误时) https://github.com/TheOnlyArtz/ArtzyCord/blob/master/Models/Invite.js#L10
3)GuildChannel结构(错误) https://github.com/TheOnlyArtz/ArtzyCord/blob/master/Models/GuildChannel.js