diff options
author | Keith Bentley <Keith.Bentley@bentley.com> | 2019-02-11 11:57:28 -0500 |
---|---|---|
committer | Keith Bentley <Keith.Bentley@bentley.com> | 2019-02-11 11:57:28 -0500 |
commit | babd50e2ed2211399dc3a7a48614bc368345d2b0 (patch) | |
tree | 5265fd9f19b8a2a600013db2d9964d728e515885 /svg.js.d.ts | |
parent | 2965038c4b8ff8589302f84b4b052c7151e015fb (diff) | |
download | svg.js-babd50e2ed2211399dc3a7a48614bc368345d2b0.tar.gz svg.js-babd50e2ed2211399dc3a7a48614bc368345d2b0.zip |
missed constructors on Matrix and PathArray
Diffstat (limited to 'svg.js.d.ts')
-rw-r--r-- | svg.js.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts index 8339137..f139a34 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -495,6 +495,7 @@ module "@svgdotjs/svg.js" { type MatrixAlias = MatrixLike | number[] | Element | string;
class Matrix {
+ constructor();
constructor(source: MatrixAlias): Matrix;
constructor(a: number, b: number, c: number, d: number, e: number, f: number): Matrix;
a: number;
@@ -558,6 +559,7 @@ module "@svgdotjs/svg.js" { // pathArray.js
class PathArray extends _Array {
+ constructor();
constructor(): PathArray;
constructor(d: PathArrayAlias): PathArray;
move(x: number, y: number): this;
|