diff --git a/.changeset/four-suns-refuse.md b/.changeset/four-suns-refuse.md index 40770f39ecee..34a9c5735087 100644 --- a/.changeset/four-suns-refuse.md +++ b/.changeset/four-suns-refuse.md @@ -1,5 +1,5 @@ --- -"@sveltejs/kit": feat +'@sveltejs/kit': minor --- feat: add `RouteId` and `RouteParams` to NavigationTarget interface diff --git a/packages/kit/src/exports/public.d.ts b/packages/kit/src/exports/public.d.ts index 84c7481ad837..95f3c7882b65 100644 --- a/packages/kit/src/exports/public.d.ts +++ b/packages/kit/src/exports/public.d.ts @@ -1634,7 +1634,7 @@ export type RemoteQuery = RemoteResource & { */ refresh(): Promise; /** - * Temporarily override the value of a query. This is used with the `updates` method of a [command](https://svelte.dev/docs/kit/remote-functions#command-Single-flight-mutations) or [enhanced form submission](https://svelte.dev/docs/kit/remote-functions#form-enhance) to provide optimistic updates. + * Temporarily override the value of a query. This is used with the `updates` method of a [command](https://svelte.dev/docs/kit/remote-functions#command-Updating-queries) or [enhanced form submission](https://svelte.dev/docs/kit/remote-functions#form-enhance) to provide optimistic updates. * * ```svelte *