From babd50e2ed2211399dc3a7a48614bc368345d2b0 Mon Sep 17 00:00:00 2001 From: Keith Bentley Date: Mon, 11 Feb 2019 11:57:28 -0500 Subject: missed constructors on Matrix and PathArray --- svg.js.d.ts | 2 ++ 1 file changed, 2 insertions(+) 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; -- cgit v1.2.3