nehan
Version:
Html layout engine for paged-media written in Typescript
11 lines (10 loc) • 339 B
TypeScript
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;
}