@@ -1046,8 +1046,8 @@ export interface NavigationTarget<
1046
1046
1047
1047
/**
1048
1048
* - `enter`: The app has hydrated/started
1049
- * - `form`: The user submitted a `<form>` with a GET method
1050
- * - `leave`: The user is leaving the app by closing the tab or using the back/forward buttons to go to a different document
1049
+ * - `form`: The user submitted a `<form method="GET">`
1050
+ * - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
1051
1051
* - `link`: Navigation was triggered by a link click
1052
1052
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
1053
1053
* - `popstate`: Navigation was triggered by back/forward navigation
@@ -1065,7 +1065,7 @@ export interface Navigation {
1065
1065
to : NavigationTarget | null ;
1066
1066
/**
1067
1067
* The type of navigation:
1068
- * - `form`: The user submitted a `<form>`
1068
+ * - `form`: The user submitted a `<form method="GET" >`
1069
1069
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
1070
1070
* - `link`: Navigation was triggered by a link click
1071
1071
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
@@ -1103,7 +1103,7 @@ export interface BeforeNavigate extends Navigation {
1103
1103
export interface OnNavigate extends Navigation {
1104
1104
/**
1105
1105
* The type of navigation:
1106
- * - `form`: The user submitted a `<form>`
1106
+ * - `form`: The user submitted a `<form method="GET" >`
1107
1107
* - `link`: Navigation was triggered by a link click
1108
1108
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
1109
1109
* - `popstate`: Navigation was triggered by back/forward navigation
@@ -1122,7 +1122,7 @@ export interface AfterNavigate extends Omit<Navigation, 'type'> {
1122
1122
/**
1123
1123
* The type of navigation:
1124
1124
* - `enter`: The app has hydrated/started
1125
- * - `form`: The user submitted a `<form>`
1125
+ * - `form`: The user submitted a `<form method="GET" >`
1126
1126
* - `link`: Navigation was triggered by a link click
1127
1127
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
1128
1128
* - `popstate`: Navigation was triggered by back/forward navigation
0 commit comments