From c778b182ddffcf3f957449ed963c6f6bd64e7c31 Mon Sep 17 00:00:00 2001 From: Devin Holderness Date: Thu, 21 Aug 2025 13:43:53 -0600 Subject: [PATCH] Add separate coordinates option property to TreeExportOptions --- src/ops/JourneyOps.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ops/JourneyOps.ts b/src/ops/JourneyOps.ts index 8c602ea6..dde52bbd 100644 --- a/src/ops/JourneyOps.ts +++ b/src/ops/JourneyOps.ts @@ -537,6 +537,10 @@ export interface TreeExportOptions { * Include x and y coordinate positions of the journey/tree nodes. */ coords: boolean; + /** + * Save x and y coordinate positions of the journey/tree nodes separately. + */ + sepCoords?: boolean; } /**