mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 17:43:30 +01:00
docs 5.59%
This commit is contained in:
13
src/index.js
13
src/index.js
@@ -17,6 +17,19 @@
|
||||
* @property {Number} [large_threshold=250] an integer between 0 and 250. When a server has more users than `options.large_threshold`, only the online/active users are cached.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Object containing properties that will be applied when deleting messages
|
||||
* @typedef {(object)} MessageDeletionOptions
|
||||
* @property {Number} [wait] If set, the message will be deleted after `options.wait` milliseconds.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Object containing properties that will be used when fetching channel logs. You cannot specify _both_ `options.before` and `options.after`
|
||||
* @typedef {(object)} ChannelLogsOptions
|
||||
* @property {MessageResolvable} [before] When fetching logs, it will fetch from messages before `options.before` but not including it.
|
||||
* @property {MessageResolvable} [after] When fetching logs, it will fetch from messages after `options.after` but not including it.
|
||||
*/
|
||||
|
||||
import Client from "./Client/Client";
|
||||
import Channel from "./Structures/Channel";
|
||||
import ChannelPermissions from "./Structures/ChannelPermissions";
|
||||
|
||||
Reference in New Issue
Block a user