From e4450c8417624b71d779cb4f41692538f9165e10 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sat, 2 Sep 2023 19:12:47 -0400 Subject: first commit --- .../discord.js/src/managers/DMMessageManager.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 node_modules/discord.js/src/managers/DMMessageManager.js (limited to 'node_modules/discord.js/src/managers/DMMessageManager.js') diff --git a/node_modules/discord.js/src/managers/DMMessageManager.js b/node_modules/discord.js/src/managers/DMMessageManager.js new file mode 100644 index 0000000..f0b3a33 --- /dev/null +++ b/node_modules/discord.js/src/managers/DMMessageManager.js @@ -0,0 +1,17 @@ +'use strict'; + +const MessageManager = require('./MessageManager'); + +/** + * Manages API methods for messages in direct message channels and holds their cache. + * @extends {MessageManager} + */ +class DMMessageManager extends MessageManager { + /** + * The channel that the messages belong to + * @name DMMessageManager#channel + * @type {DMChannel} + */ +} + +module.exports = DMMessageManager; -- cgit v1.2.3