generated from nhcarrigan/template
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import { GatewayIntentBits } from "discord.js";
|
|
|
|
export const IntentOptions = [
|
|
GatewayIntentBits.Guilds,
|
|
GatewayIntentBits.GuildMembers,
|
|
GatewayIntentBits.GuildModeration,
|
|
GatewayIntentBits.GuildMessages,
|
|
GatewayIntentBits.MessageContent,
|
|
GatewayIntentBits.GuildMessageReactions
|
|
];
|