Skip to content

Commit 1f00492

Browse files
committed
.
1 parent 6c582b6 commit 1f00492

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

packages/kit/src/exports/public.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ export interface NavigationTarget {
10271027
/**
10281028
* - `enter`: The app has hydrated/started
10291029
* - `form`: The user submitted a `<form>` with a GET method
1030-
* - `leave`: The user is leaving the app by closing the tab or using the back/forward buttons to go to a different document
1030+
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
10311031
* - `link`: Navigation was triggered by a link click
10321032
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
10331033
* - `popstate`: Navigation was triggered by back/forward navigation
@@ -1045,7 +1045,7 @@ export interface Navigation {
10451045
to: NavigationTarget | null;
10461046
/**
10471047
* The type of navigation:
1048-
* - `form`: The user submitted a `<form>`
1048+
* - `form`: The user submitted a `<form>` with a GET method
10491049
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
10501050
* - `link`: Navigation was triggered by a link click
10511051
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
@@ -1083,7 +1083,7 @@ export interface BeforeNavigate extends Navigation {
10831083
export interface OnNavigate extends Navigation {
10841084
/**
10851085
* The type of navigation:
1086-
* - `form`: The user submitted a `<form>`
1086+
* - `form`: The user submitted a `<form>` with a GET method
10871087
* - `link`: Navigation was triggered by a link click
10881088
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
10891089
* - `popstate`: Navigation was triggered by back/forward navigation
@@ -1102,7 +1102,7 @@ export interface AfterNavigate extends Omit<Navigation, 'type'> {
11021102
/**
11031103
* The type of navigation:
11041104
* - `enter`: The app has hydrated/started
1105-
* - `form`: The user submitted a `<form>`
1105+
* - `form`: The user submitted a `<form>` with a GET method
11061106
* - `link`: Navigation was triggered by a link click
11071107
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
11081108
* - `popstate`: Navigation was triggered by back/forward navigation

packages/kit/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,7 @@ declare module '@sveltejs/kit' {
10091009
/**
10101010
* - `enter`: The app has hydrated/started
10111011
* - `form`: The user submitted a `<form>` with a GET method
1012-
* - `leave`: The user is leaving the app by closing the tab or using the back/forward buttons to go to a different document
1012+
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
10131013
* - `link`: Navigation was triggered by a link click
10141014
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
10151015
* - `popstate`: Navigation was triggered by back/forward navigation
@@ -1027,7 +1027,7 @@ declare module '@sveltejs/kit' {
10271027
to: NavigationTarget | null;
10281028
/**
10291029
* The type of navigation:
1030-
* - `form`: The user submitted a `<form>`
1030+
* - `form`: The user submitted a `<form>` with a GET method
10311031
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
10321032
* - `link`: Navigation was triggered by a link click
10331033
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
@@ -1065,7 +1065,7 @@ declare module '@sveltejs/kit' {
10651065
export interface OnNavigate extends Navigation {
10661066
/**
10671067
* The type of navigation:
1068-
* - `form`: The user submitted a `<form>`
1068+
* - `form`: The user submitted a `<form>` with a GET method
10691069
* - `link`: Navigation was triggered by a link click
10701070
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
10711071
* - `popstate`: Navigation was triggered by back/forward navigation
@@ -1084,7 +1084,7 @@ declare module '@sveltejs/kit' {
10841084
/**
10851085
* The type of navigation:
10861086
* - `enter`: The app has hydrated/started
1087-
* - `form`: The user submitted a `<form>`
1087+
* - `form`: The user submitted a `<form>` with a GET method
10881088
* - `link`: Navigation was triggered by a link click
10891089
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
10901090
* - `popstate`: Navigation was triggered by back/forward navigation

0 commit comments

Comments
 (0)