Skip to content

Commit

Permalink
fix: correct link in types documentation (#8557)
Browse files Browse the repository at this point in the history
Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com>
  • Loading branch information
KTibow and benmccann authored Jan 16, 2023
1 parent 918fcbc commit a47b55a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/clean-onions-doubt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@sveltejs/kit": patch
---

fix: correct link in types documentation
4 changes: 2 additions & 2 deletions packages/kit/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ export interface ServerLoadEvent<

/**
* Shape of a form action method that is part of `export const actions = {..}` in `+page.server.js`.
* See [form actions](https://kit-svelte-d4b3r0pff-svelte.vercel.app/docs/form-actions) for more information.
* See [form actions](https://kit.svelte.dev/docs/form-actions) for more information.
*/
export interface Action<
Params extends Partial<Record<string, string>> = Partial<Record<string, string>>,
Expand All @@ -1056,7 +1056,7 @@ export interface Action<

/**
* Shape of the `export const actions = {..}` object in `+page.server.js`.
* See [form actions](https://kit-svelte-d4b3r0pff-svelte.vercel.app/docs/form-actions) for more information.
* See [form actions](https://kit.svelte.dev/docs/form-actions) for more information.
*/
export type Actions<
Params extends Partial<Record<string, string>> = Partial<Record<string, string>>,
Expand Down

0 comments on commit a47b55a

Please sign in to comment.