fix(types)!: Sort & fix sticker.ts types (#4296)

* Sort & fix sticker.ts types

* Update packages/types/src/discord/sticker.ts

Co-authored-by: Link <lts20050703@gmail.com>

---------

Co-authored-by: Link <lts20050703@gmail.com>
This commit is contained in:
Fleny
2025-08-11 18:45:33 +02:00
committed by GitHub
parent d713d09064
commit 485fd1bc67

View File

@@ -11,8 +11,13 @@ export interface DiscordSticker {
/** Name of the sticker */
name: string
/** Description of the sticker */
description: string
/** a unicode emoji representing the sticker's expression */
description: string | null
/**
* Autocomplete/suggestion tags for the sticker
* @remarks
* Max 200 characters
* A comma separated list of keywords is the format used in this field by standard stickers, but this is just a convention. Incidentally the client will always use a name generated from an emoji as the value of this field when creating or modifying a guild sticker.
*/
tags: string
/** [type of sticker](https://discord.com/developers/docs/resources/sticker#sticker-object-sticker-types) */
type: StickerTypes