We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 963bc7e commit 5f24f39Copy full SHA for 5f24f39
src/types.ts
@@ -145,7 +145,7 @@ type MergeDeep<New, Row> = {
145
// Helper to check if a type is a plain object (not an array)
146
type IsPlainObject<T> = T extends any[] ? false : T extends object ? true : false
147
148
-// 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.
149
// If NewResult is an array, merge each element.
150
export type MergePartialResult<NewResult, Result, Options> = Options extends { merge: true }
151
? Result extends any[]
0 commit comments