UNPKG

nehan

Version:

Html layout engine for paged-media written in Typescript

11 lines (10 loc) 339 B
import { TextFormatContext } from './public-api'; export interface IHyphenator { hyphenate: (context: TextFormatContext) => number; } export declare class Hyphenator implements IHyphenator { static instance: Hyphenator; private constructor(); hyphenate(context: TextFormatContext): number; private getHyphenateCount; }