aboutsummaryrefslogtreecommitdiffstats
path: root/svg.js.d.ts
diff options
context:
space:
mode:
authorFrankSandqvist <32358133+FrankSandqvist@users.noreply.github.com>2018-03-18 20:28:06 +0200
committerGitHub <noreply@github.com>2018-03-18 20:28:06 +0200
commit6a4caee8928b698836b3a1eacc18751fdf4a5567 (patch)
treee845a64b7a8e8ef5b64d31d75d11f2acd41cea2a /svg.js.d.ts
parent8a5c8fa29a1a483330319f3e697909bb53318c69 (diff)
downloadsvg.js-6a4caee8928b698836b3a1eacc18751fdf4a5567.tar.gz
svg.js-6a4caee8928b698836b3a1eacc18751fdf4a5567.zip
X & Y Properties on Point
Or should I not access these directly?
Diffstat (limited to 'svg.js.d.ts')
-rw-r--r--svg.js.d.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts
index b7b4358..4a08093 100644
--- a/svg.js.d.ts
+++ b/svg.js.d.ts
@@ -658,6 +658,9 @@ declare namespace svgjs {
new (point: Point): Point;
new (position: { x: number, y: number }): Point;
new (x: number, y: number): Point;
+
+ x: number;
+ y: number;
clone(): Point;
morph(point: Point): this;