blob: 89b11ccf0aea6fe923d4f03942d3a7240e25315f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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,
}
|