mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-25 16:24:45 +00:00
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
export enum StickerType {
|
|
STANDARD = 1,
|
|
GUILD = 2,
|
|
}
|
|
|
|
export enum StickerFormatType {
|
|
GIF = 0, // gif is a custom format type and not in discord spec
|
|
PNG = 1,
|
|
APNG = 2,
|
|
LOTTIE = 3,
|
|
}
|