DefinitelyTyped/types/hyphen/eu.d.ts
Krisztián Balla 82adccd772
[types/hyphen] Move all types into index.d.ts (#45416)
* Remove common.d.ts

* Linter: remove redundant exports

* Linter: no-self-import

* Update tests
2020-06-24 05:18:55 -04:00

17 lines
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;