autoql-fe-utils 1.0.26 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.global.js +3542 -3540
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +452 -447
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +452 -447
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -753,7 +753,7 @@ declare const getSVGBase64: (svgElement: any) => string;
|
|
|
753
753
|
* @param {string} [fill] optionally backgrund canvas fill
|
|
754
754
|
* @return {Promise} a promise to the bas64 png image
|
|
755
755
|
*/
|
|
756
|
-
declare const svgToPng: (svgElement:
|
|
756
|
+
declare const svgToPng: (svgElement: SVGElement, scale?: number) => Promise<unknown>;
|
|
757
757
|
declare const getBBoxFromRef: (ref: any) => any;
|
|
758
758
|
|
|
759
759
|
interface getSupportedDisplayTypesParams {
|