@@ -1027,7 +1027,7 @@ export interface NavigationTarget {
1027
1027
/**
1028
1028
* - `enter`: The app has hydrated/started
1029
1029
* - `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
1031
1031
* - `link`: Navigation was triggered by a link click
1032
1032
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
1033
1033
* - `popstate`: Navigation was triggered by back/forward navigation
@@ -1045,7 +1045,7 @@ export interface Navigation {
1045
1045
to : NavigationTarget | null ;
1046
1046
/**
1047
1047
* The type of navigation:
1048
- * - `form`: The user submitted a `<form>`
1048
+ * - `form`: The user submitted a `<form>` with a GET method
1049
1049
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
1050
1050
* - `link`: Navigation was triggered by a link click
1051
1051
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
@@ -1083,7 +1083,7 @@ export interface BeforeNavigate extends Navigation {
1083
1083
export interface OnNavigate extends Navigation {
1084
1084
/**
1085
1085
* The type of navigation:
1086
- * - `form`: The user submitted a `<form>`
1086
+ * - `form`: The user submitted a `<form>` with a GET method
1087
1087
* - `link`: Navigation was triggered by a link click
1088
1088
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
1089
1089
* - `popstate`: Navigation was triggered by back/forward navigation
@@ -1102,7 +1102,7 @@ export interface AfterNavigate extends Omit<Navigation, 'type'> {
1102
1102
/**
1103
1103
* The type of navigation:
1104
1104
* - `enter`: The app has hydrated/started
1105
- * - `form`: The user submitted a `<form>`
1105
+ * - `form`: The user submitted a `<form>` with a GET method
1106
1106
* - `link`: Navigation was triggered by a link click
1107
1107
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
1108
1108
* - `popstate`: Navigation was triggered by back/forward navigation
0 commit comments