From: Ulrich-Matthias Schäfer Date: Sat, 2 Sep 2023 19:30:04 +0000 (+0200) Subject: allow string as input to rect X-Git-Tag: 3.2.1~20 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3f623a9e61a9015ceef3735bca167e9410313e49;p=svg.js.git allow string as input to rect --- 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) }