# core/ids/route.ids.ts

> 5 lines of code and 4 definitions.

Tree: Site tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/tree#file-core-ids-route-ids-ts
Source text: https://banes-lab.com/assets/sources/source.a8bfd3412a75c111cc463ff60cb6eb8d50c061051ff72a60972275fde652e05a.generated.txt

## Definitions

- `ROUTE_REQUESTED` (lexical_declaration, line 3, exported)
- `ROUTE_CHANGED` (lexical_declaration, line 5, exported)
- `SCROLL_STORE_PREFIX` (lexical_declaration, line 7, exported)
- `NAVIGATION_ENTRY` (lexical_declaration, line 9, exported)

## Source

```typescript
import type { EventName } from "#types/event.types";

export const ROUTE_REQUESTED = "route.requested" satisfies EventName;

export const ROUTE_CHANGED = "route.changed" satisfies EventName;

export const SCROLL_STORE_PREFIX = "route.scroll:";

export const NAVIGATION_ENTRY = "navigation";
```
