hyperspace-desktop-client-w.../src/types/Emojis.tsx

18 lines
278 B
TypeScript
Raw Normal View History

2019-03-25 21:23:04 +01:00
/**
* Basic type for Emojis on Mastodon.
*/
export type MastodonEmoji = {
shortcode: string;
static_url: string;
url: string;
visible_in_picker: boolean;
2019-03-25 21:23:04 +01:00
};
/**
* Trimmed type of Emoji from emoji-mart
*/
export type Emoji = {
name: string;
imageUrl: string;
};