We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 31f50d4 + 186e480 commit ecd9bd9Copy full SHA for ecd9bd9
CHANGES.md
@@ -1,6 +1,7 @@
1
In next release ...
2
3
--
+- Fixed an issue where the result row array type would use the record generic
4
+ as the value type instead of `any` which was incorrect.
5
6
## v2.0.2 (2024-04-12)
7
src/result.ts
@@ -56,7 +56,7 @@ class ResultRowImpl<T> extends Array<any> {
56
* the row into an object.
57
*
58
*/
59
-export type ResultRow<T> = ReadonlyArray<T> &
+export type ResultRow<T> = ReadonlyArray<any> &
60
Pick<ResultRowImpl<T>, 'get' | 'reify'>;
61
62
/**
0 commit comments