swc/crates/swc_bundler/tests/.cache/deno/c6d7014195416a4e8767f62659ac95ca3e9d0ed3.ts
2021-11-09 20:42:49 +09:00

20 lines
1.1 KiB
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/guilds/get_guild_widget_image_style_options.ts
/** https://discord.com/developers/docs/resources/guild#get-guild-widget-image-widget-style-options */
export enum DiscordGetGuildWidgetImageStyleOptions {
/** Shield style widget with Discord icon and guild members online count */
Shield = "shield",
/** Large image with guild icon, name and online count. "POWERED BY DISCORD" as the footer of the widget */
Banner1 = "banner1",
/** Smaller widget style with guild icon, name and online count. Split on the right with Discord logo */
Banner2 = "banner2",
/** Large image with guild icon, name and online count. In the footer, Discord logo on the left and "Chat Now" on the right */
Banner3 = "banner3",
/** Large Discord logo at the top of the widget. Guild icon, name and online count in the middle portion of the widget and a "JOIN MY SERVER" button at the bottom */
Banner4 = "banner4",
}
export type GetGuildWidgetImageStyleOptions = DiscordGetGuildWidgetImageStyleOptions;
export const GetGuildWidgetImageStyleOptions = DiscordGetGuildWidgetImageStyleOptions;