viewbox.d.mts 267 B

12345678910
  1. /**
  2. * SVG viewBox: x, y, width, height
  3. */
  4. type SVGViewBox = [x: number, y: number, width: number, height: number];
  5. /**
  6. * Get viewBox from string
  7. */
  8. declare function getSVGViewBox(value: string): SVGViewBox | undefined;
  9. export { type SVGViewBox, getSVGViewBox };