@hugsmidjan/hyphen
Version:
Text hyphenation in Javascript. - Fork with improved icelandic hyphenation based on https://repository.clarin.is/repository/xmlui/handle/20.500.12537/86
17 lines (11 loc) • 705 B
TypeScript
import { HyphenationFunctionAsync, HyphenationFunctionSync, PatternsDefinition } from ".";
/** The asynchronous hyphenation function for this language. */
export const hyphenate: HyphenationFunctionAsync;
/** The asynchronous hyphenation function, that skips HTML, for this language. */
export const hyphenateHTML: HyphenationFunctionAsync;
/** The synchronous hyphenation function for this language. */
export const hyphenateSync: HyphenationFunctionSync;
/** The synchronous hyphenation function, that skips HTML, for this language. */
export const hyphenateHTMLSync: HyphenationFunctionSync;
/** The hyphenation patterns definition for this language. */
export const patterns: PatternsDefinition;