aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--svg.js.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts
index c3c39c7..7e0e5f2 100644
--- a/svg.js.d.ts
+++ b/svg.js.d.ts
@@ -821,7 +821,7 @@ declare module "@svgdotjs/svg.js" {
type TimeLike = number | TimesParam | Stepper
- type EasingCallback = (...any) => number
+ type EasingCallback = (...any: any) => number
type EasingLiteral = "<>" | "-" | "<" | ">"
class Runner {
@@ -1104,7 +1104,7 @@ declare module "@svgdotjs/svg.js" {
viewbox(x: number, y: number, width: number, height: number): this;
textPath(text: string | Text, path: string | Path): TextPath
symbol(): Symbol
- zoom(level: NumberAlias, point?: Point)
+ zoom(level: NumberAlias, point?: Point): any;
}
class Defs extends Container {