# NavigationKey

# Type Alias: NavigationKey

```ts
type NavigationKey = 
  | "ArrowUp"
  | "ArrowDown"
  | "ArrowLeft"
  | "ArrowRight"
  | "Home"
  | "End"
  | "PageUp"
  | "PageDown";
```

Defined in: [hotkey.ts:91](https://github.com/TanStack/hotkeys/blob/main/packages/hotkeys/src/hotkey.ts#L91)

Navigation keys for cursor movement.
