blob: 7b7bf922c6e30db9a722ba4bb43d3bf34a4ef9a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import type emojiUnicodeData from 'unicode-emoji-json';
export type EmojiInfo = {
title: string
emoji: string
codePoints: string | undefined
unicode: string
} & typeof emojiUnicodeData[string];
|