import type { BaseEntity } from './base-entity'; import type { Point3D } from './common'; export interface SolidEntity extends BaseEntity { type: 'SOLID' | '3DFACE'; points: Point3D[]; } //# sourceMappingURL=solid-entity.d.ts.map