{
  "version": 3,
  "sources": ["../../src/types/polyline-entity.ts"],
  "sourcesContent": ["// POLYLINE and LWPOLYLINE entity types\n\nimport type { BaseEntity } from './base-entity'\nimport type { Point2D } from './common'\n\n/** Vertex extends Point2D with optional z and additional properties */\nexport interface Vertex extends Partial<Point2D> {\n  z?: number\n  bulge?: number\n  faces?: number[]\n}\n\nexport interface PolylineEntity extends BaseEntity {\n  type: 'POLYLINE' | 'LWPOLYLINE'\n  vertices: Vertex[]\n  closed?: boolean\n  polygonMesh?: boolean\n  polyfaceMesh?: boolean\n  thickness?: number\n}\n"],
  "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;",
  "names": []
}
