Skip to content

Commit

Permalink
fix: Corrected type for toPolylines export to match actual export
Browse files Browse the repository at this point in the history
  • Loading branch information
kriffe committed Sep 9, 2023
1 parent 9f9d977 commit 31e4693
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion types/dxf/toPolylines.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import * as Information from './Information';
import { Box } from './Utils';

export default function toPolylines(parsed: Information.FileInfo): Information.Polyline[];
export default function toPolylines(parsed: Information.FileInfo): { bbox: Box, polylines: Information.Polyline[] };

0 comments on commit 31e4693

Please sign in to comment.