fix(client): 🏷️ Add description type to Emoji

This commit is contained in:
Jesse Wierzbinski 2024-12-07 11:11:18 +01:00
parent fe0a25ad47
commit 7aec850390
No known key found for this signature in database

View file

@ -4,6 +4,7 @@ export type Emoji = {
static_url: string; static_url: string;
url: string; url: string;
visible_in_picker: boolean; visible_in_picker: boolean;
category?: string;
global: boolean; global: boolean;
category?: string;
description?: string;
}; };