From e98d42a3ef6a0cc01256ee603c2ed1b983d703ba Mon Sep 17 00:00:00 2001 From: Tee Ming Date: Wed, 6 Aug 2025 14:31:53 +0800 Subject: [PATCH] Update 20-$app-types.md --- documentation/docs/98-reference/20-$app-types.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/docs/98-reference/20-$app-types.md b/documentation/docs/98-reference/20-$app-types.md index d9147c61f7c4..240af885226f 100644 --- a/documentation/docs/98-reference/20-$app-types.md +++ b/documentation/docs/98-reference/20-$app-types.md @@ -51,12 +51,12 @@ type Pathname = '/' | '/my-route' | `/my-other-route/${string}` & {}; ## ResolvedPathname -`Pathname`, but possibly prefixed with a [base path](https://svelte.dev/docs/kit/configuration#paths). Used for `page.url.pathname`. +Similar to `Pathname`, but possibly prefixed with a [base path](https://svelte.dev/docs/kit/configuration#paths). Used for `page.url.pathname`.
```dts -type Pathname = `${'' | `/${string}`}/` | `${'' | `/${string}`}/my-route` | `${'' | `/${string}`}/my-other-route/${string}` | {}; +type ResolvedPathname = `${'' | `/${string}`}/` | `${'' | `/${string}`}/my-route` | `${'' | `/${string}`}/my-other-route/${string}` | {}; ```