/** * @typedef Emoticon * Info on an emoticon. * @property {string} description * Associated description (from `wooorm/gemoji`). * @property {string} emoji * Corresponding emoji. * @property {Array} emoticons * ASCII emoticons. * @property {string} name * Name of an emoticon (preferred name from `wooorm/gemoji`). * @property {Array} tags * Associated tags (from `wooorm/gemoji`). */ /** * List of emoticons. * * @type {Array} */ export const emoticon: Array; /** * Info on an emoticon. */ export type Emoticon = { /** * Associated description (from `wooorm/gemoji`). */ description: string; /** * Corresponding emoji. */ emoji: string; /** * ASCII emoticons. */ emoticons: Array; /** * Name of an emoticon (preferred name from `wooorm/gemoji`). */ name: string; /** * Associated tags (from `wooorm/gemoji`). */ tags: Array; }; //# sourceMappingURL=index.d.ts.map