edeap
Version:
Euler Diagrams Drawn with Ellipses Area-Proportionally (Edeap)
12 lines (11 loc) • 342 B
TypeScript
import { ITextDimensions } from "./types.js";
export declare class TextDimensionsBrowser implements ITextDimensions {
text?: SVGTextElement;
textLengthMeasure?: HTMLDivElement;
init(fontSize: number, fontName: string): void;
measure(str: string): {
width: number;
height: number;
};
destroy(): void;
}