mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
16 lines
609 B
TypeScript
16 lines
609 B
TypeScript
// 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;
|