Skip to content

Commit

Permalink
feat(typescript): improve declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Saul-Mirone authored and jdecked committed Mar 31, 2022
1 parent 7c0e481 commit 9069bc5
Showing 1 changed file with 48 additions and 4 deletions.
52 changes: 48 additions & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/**
* If given to parse, this callback will be invoked per each found emoji.
*
* If this callback returns a falsy value instead of a valid `src` to use for the image, nothing will actually change for that specific emoji.
*
* @param icon the lower case HEX code point i.e. "1f4a9"
* @param options all info for this parsing operation
* @param variant the optional \uFE0F ("as image") variant, in case this info is anyhow meaningful. By default this is ignored.
*/
declare type ParseCallback = (icon: string, options: object, variant: string) => string | false;

declare interface TwemojiOptions {
/**
* Default: MaxCDN
Expand All @@ -22,19 +33,52 @@ declare interface TwemojiOptions {
/**
* The function to invoke in order to generate image src(s).
*/
callback?(icon: string, options: TwemojiOptions): void;
callback?: ParseCallback
/**
* The function to invoke in order to generate additional, custom attributes for the image tag.
* Default () => ({})
* @param icon the lower case HEX code point i.e. "1f4a9"
* @param variant variant the optional \uFE0F ("as image") variant, in case this info is anyhow meaningful. By default this is ignored.
*
*/
attributes?(): void;
attributes?(icon: string, variant: string): object;
}

declare type Twemoji = {
convert: {
/**
* Given an HEX codepoint, returns UTF16 surrogate pairs.
*
* @param codepoint string generic codepoint, i.e. '1F4A9'
* @return string codepoint transformed into utf16 surrogates pair,
* i.e. \uD83D\uDCA9
*
* @example
* twemoji.convert.fromCodePoint('1f1e8');
* // "\ud83c\udde8"
*
* '1f1e8-1f1f3'.split('-').map(twemoji.convert.fromCodePoint).join('')
* // "\ud83c\udde8\ud83c\uddf3"
*/
fromCodePoint(hexCodePoint: string): string;
toCodePoint(utf16surrogatePairs: string): string;

/**
* Given UTF16 surrogate pairs, returns the equivalent HEX codepoint.
*
* @param utf16surrogatePairs string generic utf16 surrogates pair, i.e. \uD83D\uDCA9
* @param sep string optional separator for double code points, default='-'
* @return string utf16 transformed into codepoint, i.e. '1F4A9'
*
* @example
* twemoji.convert.toCodePoint('\ud83c\udde8\ud83c\uddf3');
* // "1f1e8-1f1f3"
*
* twemoji.convert.toCodePoint('\ud83c\udde8\ud83c\uddf3', '~');
* // "1f1e8~1f1f3"
*/
toCodePoint(utf16surrogatePairs: string, sep?: string): string;
};
parse(node: HTMLElement | string, options?: TwemojiOptions): void;
parse<T extends string | HTMLElement>(node: T, options?: TwemojiOptions | ParseCallback): T;
};

declare module 'twemoji' {
Expand Down

0 comments on commit 9069bc5

Please sign in to comment.