Interface NavigateTo

It takes the user from one board to the destination set in the interaction.

interface NavigateTo {
    type: "navigate-to";
    destination: Board;
    preserveScrollPosition?: boolean;
    animation?: Animation;
}

Properties

type: "navigate-to"

Type of action

destination: Board

Board to which the action targets

preserveScrollPosition?: boolean

When true the scroll will be preserved.

animation?: Animation

Animation displayed with this interaction.