UNPKG

js-draw

Version:

Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.

7 lines (6 loc) 250 B
import { Rect2 } from '@js-draw/math'; export type SVGSizingOptions = { minDimension?: number; }; declare const adjustExportedSVGSize: (svg: SVGElement, exportRect: Rect2, options: SVGSizingOptions) => void; export default adjustExportedSVGSize;