]> source.dussan.org Git - svg.js.git/commitdiff
add isHTML flag to types (fixes #1266)
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Sun, 3 Sep 2023 05:34:53 +0000 (07:34 +0200)
committerUlrich-Matthias Schäfer <ulima.ums@googlemail.com>
Sun, 3 Sep 2023 05:34:53 +0000 (07:34 +0200)
svg.js.d.ts

index e63c859db1a22dced290e9d889a82a7902109960..8a9133a52d3a5f74924c779f2741038889ff64d3 100644 (file)
@@ -12,7 +12,11 @@ declare type CSSStyleName = Exclude<
 
 declare module '@svgdotjs/svg.js' {
   function SVG(): Svg
-  function SVG(selector: QuerySelector): Element
+  /**
+   * @param selectorOrHtml pass in a css selector or an html/svg string
+   * @param isHTML only used if first argument is an html string. Will treat the svg/html as html and not svg
+   */
+  function SVG(selectorOrHtml: QuerySelector, isHTML?: boolean): Element
   function SVG<T>(el: T): SVGTypeMapping<T>
   function SVG(domElement: HTMLElement): Element