mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
* Remove common.d.ts * Linter: remove redundant exports * Linter: no-self-import * Update tests
17 lines
705 B
TypeScript
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;
|