svg-engine
Version:
Create SVG files in Node.js
10 lines (9 loc) • 342 B
TypeScript
import { SVGInstance } from "../../../node/instance/SVGInstance.js";
export declare class XYPositioning extends SVGInstance {
moveTo(x: string | number, y: string | number): this;
moveBy(dx: number, dy: number): this;
x(): string | null;
x(x: string | number): this;
y(): string | null;
y(y: string | number): this;
}