emojibase
Version:
Emojibase utility functions for working with emoji characters.
12 lines โข 478 B
TypeScript
import type { CodePoint, Unicode } from './types';
/**
* This function will convert an array of numerical codepoints to a literal emoji Unicode character.
*
* ```ts
* import { fromCodepointToUnicode } from 'emojibase';
*
* fromCodepointToUnicode([128104, 8205, 128105, 8205, 128103, 8205, 128102]); // ๐จโ๐ฉโ๐งโ๐ฆ
* ```
*/
export declare function fromCodepointToUnicode(codepoint: CodePoint[]): Unicode;
//# sourceMappingURL=fromCodepointToUnicode.d.ts.map