nehan
Version:
Html layout engine for paged-media written in Typescript
11 lines (10 loc) • 363 B
TypeScript
import { LogicalLineNode } from './public-api';
export interface ILogicalTextJustifier {
justify: (line: LogicalLineNode) => void;
}
export declare class LogicalTextJustifier implements ILogicalTextJustifier {
static instance: LogicalTextJustifier;
private constructor();
private getJustifyTargetChars;
justify(line: LogicalLineNode): void;
}