@thi.ng/emoji
Version:
Bi-directional lookup tables mapping emoji names & their characters
14 lines • 445 B
TypeScript
/**
* Approx. 1900 emoji codes. Inverse mapping of {@link NAMES}, i.e. here the
* emoji names are keys to look up the actual emoji characters in this object.
*
* @remarks
* Source: https://github.com/omnidan/node-emoji/blob/master/lib/emoji.json
*
* Changes:
*
* - sorted alphabetically
* - updated names, replaced all hyphens with underscores
*/
export declare const EMOJI: Record<string, string>;
//# sourceMappingURL=emoji.d.ts.map