mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-04 09:50:07 +00:00
Update cache.ts
This commit is contained in:
11
src/cache.ts
11
src/cache.ts
@@ -53,7 +53,16 @@ export const cache = {
|
||||
/** Only these properties will be added to memory for your members. */
|
||||
members: new Set<keyof GuildMember | keyof User | "guilds" | "bitfield" | "cachedAt">(),
|
||||
/** Only these properties will be added to memory for your messages. */
|
||||
messages: new Set<keyof Message | "isBot" | "tag" | "authorId" | "mentionedUserIds">(),
|
||||
messages: new Set<
|
||||
| keyof Message
|
||||
| "isBot"
|
||||
| "tag"
|
||||
| "authorId"
|
||||
| "mentionedUserIds"
|
||||
| "mentionedRoleIds"
|
||||
| "mentionedChannelIds"
|
||||
| "bitfield"
|
||||
>(),
|
||||
/** Only these properties will be added to memory for your roles. */
|
||||
roles: new Set<keyof Role | "botId" | "isNitroBoostRole" | "integrationId" | "bitfield">(),
|
||||
/** Only these properties will be added to memory for your voice states. */
|
||||
|
||||
Reference in New Issue
Block a user