@tanstack/router-core 1.131.2 → 1.131.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -36,7 +36,7 @@ export type ValidateParams<
36
36
  > = PathParamOptions<TRouter, TFrom, TTo>
37
37
 
38
38
  /**
39
- * @internal
39
+ * @private
40
40
  */
41
41
  export type InferFrom<
42
42
  TOptions,
@@ -48,7 +48,7 @@ export type InferFrom<
48
48
  : TDefaultFrom
49
49
 
50
50
  /**
51
- * @internal
51
+ * @private
52
52
  */
53
53
  export type InferTo<TOptions> = TOptions extends {
54
54
  to: infer TTo extends string
@@ -57,7 +57,7 @@ export type InferTo<TOptions> = TOptions extends {
57
57
  : undefined
58
58
 
59
59
  /**
60
- * @internal
60
+ * @private
61
61
  */
62
62
  export type InferMaskTo<TOptions> = TOptions extends {
63
63
  mask: { to: infer TTo extends string }
@@ -131,7 +131,7 @@ export type ValidateId<
131
131
  > = ConstrainLiteral<TId, RouteIds<TRouter['routeTree']>>
132
132
 
133
133
  /**
134
- * @internal
134
+ * @private
135
135
  */
136
136
  export type InferStrict<TOptions> = TOptions extends {
137
137
  strict: infer TStrict extends boolean
@@ -140,7 +140,7 @@ export type InferStrict<TOptions> = TOptions extends {
140
140
  : true
141
141
 
142
142
  /**
143
- * @internal
143
+ * @private
144
144
  */
145
145
  export type InferShouldThrow<TOptions> = TOptions extends {
146
146
  shouldThrow: infer TShouldThrow extends boolean
@@ -149,7 +149,7 @@ export type InferShouldThrow<TOptions> = TOptions extends {
149
149
  : true
150
150
 
151
151
  /**
152
- * @internal
152
+ * @private
153
153
  */
154
154
  export type InferSelected<TOptions> = TOptions extends {
155
155
  select: (...args: Array<any>) => infer TSelected