From 4154b9607f4dfa3a6d112001787d8302a8bcba96 Mon Sep 17 00:00:00 2001 From: yvan Date: Sat, 26 Jul 2025 12:58:33 +0800 Subject: [PATCH] PlanTaskSequence.option, loadHeight / unloadHeight --- src/types/RCS.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/types/RCS.d.ts b/src/types/RCS.d.ts index 922baa2..f8f6ad9 100644 --- a/src/types/RCS.d.ts +++ b/src/types/RCS.d.ts @@ -87,6 +87,10 @@ declare interface AgvOptions { * 强制开始方向 */ forceStartDirection?: LLCDirection + + loadHeight: number + + unloadHeight: number } declare type LLCDirection = 'UP' | 'DOWN' | 'LEFT' | 'RIGHT'