summary refs log tree commit diff
path: root/dist/server-util/src/util/Intents.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-10 20:59:58 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-10 20:59:58 +0100
commit3d54ed476240702812caf0b6e1ce94bfb0329cb5 (patch)
tree9f928dee5023de75b22d6b99c25c3c3fd967da7f /dist/server-util/src/util/Intents.d.ts
parentexport event (diff)
downloadserver-3d54ed476240702812caf0b6e1ce94bfb0329cb5.tar.xz
fix models + move schemas in api and gateway
Diffstat (limited to 'dist/server-util/src/util/Intents.d.ts')
-rw-r--r--dist/server-util/src/util/Intents.d.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/dist/server-util/src/util/Intents.d.ts b/dist/server-util/src/util/Intents.d.ts
new file mode 100644

index 00000000..bf8bac90 --- /dev/null +++ b/dist/server-util/src/util/Intents.d.ts
@@ -0,0 +1,20 @@ +import { BitField } from "./BitField"; +export declare class Intents extends BitField { + static FLAGS: { + GUILDS: bigint; + GUILD_MEMBERS: bigint; + GUILD_BANS: bigint; + GUILD_EMOJIS: bigint; + GUILD_INTEGRATIONS: bigint; + GUILD_WEBHOOKS: bigint; + GUILD_INVITES: bigint; + GUILD_VOICE_STATES: bigint; + GUILD_PRESENCES: bigint; + GUILD_MESSAGES: bigint; + GUILD_MESSAGE_REACTIONS: bigint; + GUILD_MESSAGE_TYPING: bigint; + DIRECT_MESSAGES: bigint; + DIRECT_MESSAGE_REACTIONS: bigint; + DIRECT_MESSAGE_TYPING: bigint; + }; +}