iceshrimp/packages/megalodon/lib/src/entities/emoji.d.ts
2023-07-06 02:16:51 +00:00

9 lines
193 B
TypeScript

declare namespace Entity {
type Emoji = {
shortcode: string;
static_url: string;
url: string;
visible_in_picker: boolean;
category: string;
};
}