@@ -1046,8 +1046,8 @@ export interface NavigationTarget<
10461046
10471047/**
10481048 * - `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
10511051 * - `link`: Navigation was triggered by a link click
10521052 * - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
10531053 * - `popstate`: Navigation was triggered by back/forward navigation
@@ -1065,7 +1065,7 @@ export interface Navigation {
10651065 to : NavigationTarget | null ;
10661066 /**
10671067 * The type of navigation:
1068- * - `form`: The user submitted a `<form>`
1068+ * - `form`: The user submitted a `<form method="GET" >`
10691069 * - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
10701070 * - `link`: Navigation was triggered by a link click
10711071 * - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
@@ -1103,7 +1103,7 @@ export interface BeforeNavigate extends Navigation {
11031103export interface OnNavigate extends Navigation {
11041104 /**
11051105 * The type of navigation:
1106- * - `form`: The user submitted a `<form>`
1106+ * - `form`: The user submitted a `<form method="GET" >`
11071107 * - `link`: Navigation was triggered by a link click
11081108 * - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
11091109 * - `popstate`: Navigation was triggered by back/forward navigation
@@ -1122,7 +1122,7 @@ export interface AfterNavigate extends Omit<Navigation, 'type'> {
11221122 /**
11231123 * The type of navigation:
11241124 * - `enter`: The app has hydrated/started
1125- * - `form`: The user submitted a `<form>`
1125+ * - `form`: The user submitted a `<form method="GET" >`
11261126 * - `link`: Navigation was triggered by a link click
11271127 * - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
11281128 * - `popstate`: Navigation was triggered by back/forward navigation
0 commit comments