{
  "version": 3,
  "sources": ["../../src/types/svg.ts"],
  "sourcesContent": ["// SVG-specific types\n\nimport type { Box2 } from 'vecks'\n\n/** Bounding box with SVG element */\nexport interface BoundsAndElement {\n  bbox: Box2\n  element: string\n  x?: number\n  y?: number\n  x2?: number\n  y2?: number\n}\n\n/** Ellipse parameters for SVG */\nexport interface EllipseParams {\n  cx: number\n  cy: number\n  rx: number\n  ry: number\n  rotation: number\n}\n\n/** Layer information */\nexport interface Layer {\n  name: string\n  colorNumber?: number\n  color?: number\n  frozen?: boolean\n  [key: string]: unknown\n}\n"],
  "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;",
  "names": []
}
