UNPKG

@bitbybit-dev/base

Version:

Bit By Bit Developers Base CAD Library to Program Geometry

20 lines (19 loc) 457 B
import { VectorCharData } from "./vector-char-data"; export declare class VectorTextData { constructor(width?: number, height?: number, chars?: VectorCharData[]); /** * The width of the char * @default undefined */ width?: number; /** * The height of the char * @default undefined */ height?: number; /** * The segments of the char * @default undefined */ chars?: VectorCharData[]; }