diff options
author | Lars Hvam <larshp@hotmail.com> | 2021-10-12 11:01:12 +0200 |
---|---|---|
committer | Lars Hvam <larshp@hotmail.com> | 2021-10-12 11:01:12 +0200 |
commit | 15019863b7468447e2fa1b3a5bb232ba3aa562a0 (patch) | |
tree | 6294b17f8b31fbd0f67cb39fe79090f8c5c5a006 /svg.js.d.ts | |
parent | 239a854014f3473c8c802ce95d9f9e3e6232ad2e (diff) | |
download | svg.js-15019863b7468447e2fa1b3a5bb232ba3aa562a0.tar.gz svg.js-15019863b7468447e2fa1b3a5bb232ba3aa562a0.zip |
types: remove at() methods
Diffstat (limited to 'svg.js.d.ts')
-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);
|