UNPKG

nehan

Version:

Html layout engine for paged-media written in Typescript

10 lines (9 loc) 283 B
import { DualChar } from './public-api'; export interface IKerning { set: (cur: DualChar, prev: DualChar) => boolean; } export declare class Kerning implements IKerning { static instance: Kerning; private constructor(); set(cur: DualChar, prev: DualChar): boolean; }