diff --git a/CHANGES.md b/CHANGES.md index 42eb9ab..814faf5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,7 @@ In next release ... -- +- Fixed an issue where the result row array type would use the record generic + as the value type instead of `any` which was incorrect. ## v2.0.2 (2024-04-12) diff --git a/src/result.ts b/src/result.ts index 42a5150..909695e 100644 --- a/src/result.ts +++ b/src/result.ts @@ -56,7 +56,7 @@ class ResultRowImpl extends Array { * the row into an object. * */ -export type ResultRow = ReadonlyArray & +export type ResultRow = ReadonlyArray & Pick, 'get' | 'reify'>; /**