Type Alias TableRoutingResult
TableRoutingResult: Readonly<
{
action?: { action: "rowPress"; id: string; rowIndex: number };
consumed: boolean;
nextFocusedRowIndex?: number;
nextLastClickedKey?: string | null;
nextScrollTop?: number;
nextSelection?: readonly string[];
},
>
Result of table key routing.