File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
packages/router/src/experimental/route-resolver Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -66,13 +66,22 @@ export interface EXPERIMENTAL_ResolverRecord_Base {
6666export interface EXPERIMENTAL_ResolverRecord_Group
6767 extends EXPERIMENTAL_ResolverRecord_Base {
6868 /**
69- * A group route cannot be matched directly and so names are not allowed .
69+ * A group route cannot be matched directly and cannot be named .
7070 */
7171 name ?: undefined
72+
73+ /**
74+ * A group route can **only** match the `query`.
75+ */
7276 path ?: undefined
77+
7378 // Query is the only kind of matcher that is non-exclusive
7479 // all matched records get their queries merged
7580 // query?: undefined
81+
82+ /**
83+ * A group route can **only** match the `query`.
84+ */
7685 hash ?: undefined
7786}
7887
You can’t perform that action at this time.
0 commit comments