You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@soartec-lab this broke React Query in 6.25.0 I now get these TypeScript errors.
Line 26:40: Don't use `{}` as a type. `{}` actually means "any non-nullish value".
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead.
in 6.24.0 code was this
exportinterfaceFilterConstraint{/** Filter match mode e.g. equals, notEquals, contains, notContains, gt, gte, lt, lte */matchMode?: string;/** Value to filter this column by */value?: unknown;}
in 6.25.0 its this...
/** * Value to filter this column by */exporttypeFilterConstraintValue={};exportinterfaceFilterConstraint{/** Filter match mode e.g. equals, notEquals, contains, notContains, gt, gte, lt, lte */matchMode?: string;/** Value to filter this column by */value?: FilterConstraintValue;}
Which is now broken.
The text was updated successfully, but these errors were encountered:
Regression caused by #1207
@soartec-lab this broke React Query in 6.25.0 I now get these TypeScript errors.
in 6.24.0 code was this
in 6.25.0 its this...
Which is now broken.
The text was updated successfully, but these errors were encountered: