From 3f623a9e61a9015ceef3735bca167e9410313e49 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulrich-Matthias=20Sch=C3=A4fer?= Date: Sat, 2 Sep 2023 21:30:04 +0200 Subject: [PATCH] allow string as input to rect --- svg.js.d.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/svg.js.d.ts b/svg.js.d.ts index ae32919..e63c859 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -1206,7 +1206,6 @@ declare module '@svgdotjs/svg.js' { class Containable { circle(size?: NumberAlias): Circle - circle(size: number, unit: number): Circle clip(): ClipPath ellipse(width?: number, height?: number): Ellipse foreignObject(width: number, height: number): ForeignObject @@ -1235,7 +1234,7 @@ declare module '@svgdotjs/svg.js' { plain(text: string): Text polygon(points?: PointArrayAlias): Polygon polyline(points?: PointArrayAlias): Polyline - rect(width?: number, height?: number): Rect + rect(width?: NumberAlias, height?: NumberAlias): Rect style(): Style text(block: (tspan: Tspan) => void): Text text(text: string): Text @@ -1252,12 +1251,12 @@ declare module '@svgdotjs/svg.js' { type DynamicExtends = { new (...args: any[]): Containable & T } - + /** * only for declaration purpose. actually cannot be used. */ let ContainableDom: DynamicExtends - class Fragment extends ContainableDom{ + class Fragment extends ContainableDom { constructor(node?: Node) } -- 2.39.5