Skip to content

Commit e4d8002

Browse files
authored
Update 20-$app-types.md (#14122)
1 parent 2686789 commit e4d8002

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

documentation/docs/98-reference/20-$app-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ type Pathname = '/' | '/my-route' | `/my-other-route/${string}` & {};
5151

5252
## ResolvedPathname
5353

54-
`Pathname`, but possibly prefixed with a [base path](https://svelte.dev/docs/kit/configuration#paths). Used for `page.url.pathname`.
54+
Similar to `Pathname`, but possibly prefixed with a [base path](https://svelte.dev/docs/kit/configuration#paths). Used for `page.url.pathname`.
5555

5656
<div class="ts-block">
5757

5858
```dts
59-
type Pathname = `${'' | `/${string}`}/` | `${'' | `/${string}`}/my-route` | `${'' | `/${string}`}/my-other-route/${string}` | {};
59+
type ResolvedPathname = `${'' | `/${string}`}/` | `${'' | `/${string}`}/my-route` | `${'' | `/${string}`}/my-other-route/${string}` | {};
6060
```
6161

6262
</div>

0 commit comments

Comments
 (0)