import type { DXFTuple } from './dxf'; import type { Entity } from './entity'; export interface EntityHandler { TYPE: string; process: (tuples: DXFTuple[]) => Entity; assign?: (entity: any, type: number, value: any) => any; } //# sourceMappingURL=handler.d.ts.map