swc/crates/swc_bundler/tests/.cache/deno/be9c30d712598b0081a3509135a0345ea72965fb.ts

16 lines
609 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/guilds/system_channel_flags.ts
/** https://discord.com/developers/docs/resources/guild#guild-object-system-channel-flags */
export enum DiscordSystemChannelFlags {
/** Suppress member join notifications */
SuppressJoinNotifications = 1 << 0,
/** Suppress server boost notifications */
SuppressPremiumSubscriptions = 1 << 1,
/** Suppress server setup tips */
SuppressGuildReminderNotifications = 1 << 2,
}
export type SystemChannelFlags = DiscordSystemChannelFlags;
export const SystemChannelFlags = DiscordSystemChannelFlags;