Files
Camilou.fr/VUEJS/myapp/node_modules/@iconify/utils/lib/svg/viewbox.d.ts
T
Camilla Schoeser 6a71f91e2f ajout du site
2026-05-29 21:38:59 +02:00

9 lines
260 B
TypeScript

/**
* SVG viewBox: x, y, width, height
*/
type SVGViewBox = [x: number, y: number, width: number, height: number];
/**
* Get viewBox from string
*/
declare function getSVGViewBox(value: string): SVGViewBox | undefined;
export { SVGViewBox, getSVGViewBox };