UNPKG

@andreasnicolaou/emoji-x-converter

Version:

A TypeScript library to convert between emojis and their textual descriptions across different languages using customizable mappings.

5 lines (4 loc) 306 B
type LanguageType = 'en' | 'el' | 'ko' | 'hi' | 'id' | 'es' | 'zh' | 'th' | 'tr' | 'vi' | 'sv' | 'nl' | 'pl' | 'fr' | 'de' | 'ar' | 'pt' | 'ru' | 'ja' | 'it'; export declare const emojiXLoader: Record<LanguageType, Record<string, string>>; export type LanguageXCode = keyof typeof emojiXLoader; export {};