From 15019863b7468447e2fa1b3a5bb232ba3aa562a0 Mon Sep 17 00:00:00 2001 From: Lars Hvam Date: Tue, 12 Oct 2021 11:01:12 +0200 Subject: [PATCH] types: remove at() methods --- svg.js.d.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/svg.js.d.ts b/svg.js.d.ts index f45983f..bfcd199 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -377,7 +377,6 @@ declare module "@svgdotjs/svg.js" { constructor(array?: ArrayAlias | number[]); toLine(): LineAttr; - at(pos: number): PointArray; transform(m: Matrix | MatrixLike): PointArray move(x: number, y: number): this; size(width: number, height: number): this; @@ -436,7 +435,6 @@ declare module "@svgdotjs/svg.js" { size(width: number, height: number): this; equalCommands(other: PathArray): boolean morph(pa: PathArray): this - at(pos: number): PathArray parse(array?: ArrayAlias | PathArrayAlias): PathCommand[]; bbox(): Box; to(a: any): Morphable @@ -1663,7 +1661,7 @@ declare module "@svgdotjs/svg.js" { plot(d: string): this track(): Path } - + // style.js class Style extends Element { constructor(node: SVGElement, attr?: StylingAttr); -- 2.39.5