From cb9df635533bcd868952461296c5f59e746661cb Mon Sep 17 00:00:00 2001 From: Joonas Kerttula Date: Wed, 8 Oct 2025 15:57:56 +0300 Subject: [PATCH] docs: add typedoc deprecation annotation for showStopSigns and showTrafficLights --- src/navigation/navigation/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/navigation/navigation/types.ts b/src/navigation/navigation/types.ts index 29472c9..89c8b11 100644 --- a/src/navigation/navigation/types.ts +++ b/src/navigation/navigation/types.ts @@ -71,14 +71,20 @@ export interface DisplayOptions { * If true, destination markers are shown. */ showDestinationMarkers?: boolean; + /** + * @deprecated Stop signs are enabled by default and this option will be removed in a future release. + * * Configures whether stop signs are shown during navigation. * If true, stop signs are shown. * * Defaults to true. */ showStopSigns?: boolean; + /** + * @deprecated Traffic lights are enabled by default and this option will be removed in a future release. + * * Configures whether traffic lights are shown during navigation. * If true, traffic lights are shown. * @@ -124,6 +130,7 @@ export interface ArrivalEvent { * Waypoint the device has arrived to. This waypoint was used when setDestinations was called. */ waypoint: Waypoint; + /** Whether this is the last waypoint to be visited in the route */ isFinalDestination?: boolean; }