From b4dba08d91aa1abe4f03e16b7229c15aa77dce8e Mon Sep 17 00:00:00 2001 From: JPMeehan Date: Thu, 9 Nov 2023 10:28:08 -0800 Subject: [PATCH] Tour --- src/foundry/client/core/tour.d.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/foundry/client/core/tour.d.ts b/src/foundry/client/core/tour.d.ts index 374eb5316..9060a0778 100644 --- a/src/foundry/client/core/tour.d.ts +++ b/src/foundry/client/core/tour.d.ts @@ -86,6 +86,17 @@ declare global { */ static get tourInProgress(): boolean; + /** + * Returns the active tour, if any. + */ + static get activeTour(): Tour | null; + + /** + * Handle a movement action to either progress or regress the Tour. + * @param movementDirections - The Directions being moved in + */ + static onMovementAction(movementDirections: string[]): boolean; + /** * The HTMLElement which is the focus of the current tour step. */