mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 05:32:09 +03:00
13 lines
444 B
TypeScript
13 lines
444 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/messages/message_sticker_format_types.ts
|
|
|
|
|
|
/** https://discord.com/developers/docs/resources/channel#message-object-message-sticker-format-types */
|
|
export enum DiscordMessageStickerFormatTypes {
|
|
Png = 1,
|
|
Apng,
|
|
Lottie,
|
|
}
|
|
|
|
export type MessageStickerFormatTypes = DiscordMessageStickerFormatTypes;
|
|
export const MessageStickerFormatTypes = DiscordMessageStickerFormatTypes;
|