diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2021-10-12 11:26:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 11:26:36 +0200 |
commit | 361d241c802ae144493a3f222b03c826d0e74b63 (patch) | |
tree | 6294b17f8b31fbd0f67cb39fe79090f8c5c5a006 | |
parent | 239a854014f3473c8c802ce95d9f9e3e6232ad2e (diff) | |
parent | 15019863b7468447e2fa1b3a5bb232ba3aa562a0 (diff) | |
download | svg.js-361d241c802ae144493a3f222b03c826d0e74b63.tar.gz svg.js-361d241c802ae144493a3f222b03c826d0e74b63.zip |
Merge pull request #1223 from larshp/master
types: remove at() methods
-rw-r--r-- | svg.js.d.ts | 4 |
1 files changed, 1 insertions, 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<ArrayXY> | 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<PathCommand> | 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);
|