UNPKG

nlcst-affix-emoticon-modifier

Version:

nlcst utility to merge affix emoticons into the previous sentence

12 lines (11 loc) 345 B
/** * Merge emoticons in `node` into `EmoticonNode`s. * * @param {Paragraph} node * nlcst paragraph to transform. * @returns {undefined} * Nothing. */ export function affixEmoticonModifier(node: Paragraph): undefined; export type Paragraph = import('nlcst').Paragraph; export type ParagraphContent = import('nlcst').ParagraphContent;