Skip to content

Commit

Permalink
Circular import fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bsian03 committed Aug 17, 2021
1 parent 1fad0e4 commit 24b04d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/structures/GuildChannel.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const Collection = require("../util/Collection");
const Permission = require("./Permission");
const {Permissions} = require("../Constants");
const PermissionOverwrite = require("./PermissionOverwrite");
const ThreadChannel = require("./ThreadChannel");

/**
* Represents a guild channel. You also probably want to look at CategoryChannel, NewsChannel, StoreChannel, TextChannel, and VoiceChannel. See Channel for extra properties.
Expand Down Expand Up @@ -162,3 +161,5 @@ class GuildChannel extends Channel {
}

module.exports = GuildChannel;

const ThreadChannel = require("./ThreadChannel");

0 comments on commit 24b04d7

Please sign in to comment.