Skip to content

Commit 7bb7500

Browse files
committed
docs: comments
1 parent cc600fa commit 7bb7500

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

packages/router/src/experimental/route-resolver/resolver-fixed.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,22 @@ export interface EXPERIMENTAL_ResolverRecord_Base {
6666
export 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

0 commit comments

Comments
 (0)