---
title: "Type Example"
description: "Extracted example from ctx.route"
---

# ctx.route

## Type

```ts
type RouteOptions = {
  name?: string;
  path?: string;
  params?: Record<string, any>;
  pathname?: string;
};
```
