2020-06-24 09:18:55 +00:00
|
|
|
import { HyphenationFunctionAsync, HyphenationFunctionSync, PatternsDefinition } from ".";
|
2020-04-27 12:45:01 +00:00
|
|
|
|
2020-05-15 15:39:34 +00:00
|
|
|
/** The asynchronous hyphenation function for this language. */
|
2020-04-27 12:45:01 +00:00
|
|
|
export const hyphenate: HyphenationFunctionAsync;
|
|
|
|
|
|
2020-05-15 15:39:34 +00:00
|
|
|
/** The asynchronous hyphenation function, that skips HTML, for this language. */
|
2020-04-27 12:45:01 +00:00
|
|
|
export const hyphenateHTML: HyphenationFunctionAsync;
|
|
|
|
|
|
2020-05-15 15:39:34 +00:00
|
|
|
/** The synchronous hyphenation function for this language. */
|
2020-04-27 12:45:01 +00:00
|
|
|
export const hyphenateSync: HyphenationFunctionSync;
|
|
|
|
|
|
2020-05-15 15:39:34 +00:00
|
|
|
/** The synchronous hyphenation function, that skips HTML, for this language. */
|
2020-04-27 12:45:01 +00:00
|
|
|
export const hyphenateHTMLSync: HyphenationFunctionSync;
|
|
|
|
|
|
2020-05-15 15:39:34 +00:00
|
|
|
/** The hyphenation patterns definition for this language. */
|
|
|
|
|
export const patterns: PatternsDefinition;
|