We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b701ccd commit 6e990b7Copy full SHA for 6e990b7
src/types.ts
@@ -139,7 +139,7 @@ type MergeDeep<New, Row> = {
139
// Helper to check if a type is a plain object (not an array)
140
type IsPlainObject<T> = T extends any[] ? false : T extends object ? true : false
141
142
-// Merge the new result with the original (Result) when partial is true.
+// Merge the new result with the original (Result) when merge option is true.
143
// If NewResult is an array, merge each element.
144
export type MergePartialResult<NewResult, Result, Options> = Options extends { merge: true }
145
? Result extends any[]
0 commit comments