Skip to content

Commit

Permalink
Update ChannelMessageManager.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Starman3787 committed Aug 22, 2024
1 parent f902145 commit 120bc8b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/managers/ChannelMessageManager.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Client from "../Client.js";
import { LIMITS, PERMISSIONS } from "../constants.js";
import { Guild } from "../structures.js";
import Message from "../structures/Message.js";
import checkPermission from "../util/discord/checkPermission.js";
import BaseCacheManager from "./BaseCacheManager.js";
Expand All @@ -15,7 +16,11 @@ class ChannelMessageManager extends BaseCacheManager {
/**
* Creates a channel message manager.
* @param {Client} client The client instance.
* @param {Guild} guild The guild that this message manager belongs to.
* @param {Channel} channel The channel that is being managed.
* @throws {TypeError}
* @constructor
* @public
*/
constructor(client, guild, channel) {
super(client, { structureType: ChannelMessageManager });
Expand Down

0 comments on commit 120bc8b

Please sign in to comment.