@obliczeniowo/elementary
Version:
Library made in Angular version 19
15 lines (14 loc) • 523 B
TypeScript
import { SvgGroup } from './svg-group';
import { Rotate } from './TransformationClass';
import { Style } from './Style';
export declare class SvgText {
svg: SVGTextElement;
rotate: Rotate;
setText(text: string): void;
constructor(x: number, y: number, text: string, style: Style, id: string, rotate: Rotate, svgContainer: SVGElement | SvgGroup);
show(display: boolean): void;
private set _transform(value);
get transform(): string | null;
setX(x: number): void;
setY(y: number): void;
}