NavigationState: {
    activeDirections?: Directions;
    activePath?: Path;
    floors: Floor[];
    floorStacks: FloorStack[];
    isMultiFloor: boolean;
    paths: Path[];
}

Snapshot of the navigation system's state at a point in time, including the active floors, paths, and directions. Returned by Navigation.getState() and suitable for serialization or use in undo/redo flows.

Type declaration