astro-ghostcms/.pnpm-store/v3/files/8c/9faa7d3f05e50ccb21483ec4e30...

11 lines
262 B
Plaintext

/**
* 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 };