UNPKG

@daign/2d-graphics

Version:

Two dimensional graphics library that implements the daign-2d-pipeline.

13 lines (12 loc) 275 B
import { SinglePointElement } from './singlePointElement'; /** * Class for a text element at an anchor position. */ export declare class Text extends SinglePointElement { content: string; textAnchor: string; /** * Constructor. */ constructor(); }