diff options
author | FrankSandqvist <32358133+FrankSandqvist@users.noreply.github.com> | 2018-03-18 20:28:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-18 20:28:06 +0200 |
commit | 6a4caee8928b698836b3a1eacc18751fdf4a5567 (patch) | |
tree | e845a64b7a8e8ef5b64d31d75d11f2acd41cea2a /svg.js.d.ts | |
parent | 8a5c8fa29a1a483330319f3e697909bb53318c69 (diff) | |
download | svg.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.ts | 3 |
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;
|