Skip to content

Commit bfa9524

Browse files
y-hsgwigalklebanov
authored andcommitted
fix: allow undefined values in Updateable type (#1496)
1 parent 9b8c96d commit bfa9524

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/column-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,5 +201,5 @@ export type Insertable<R> = DrainOuterGeneric<
201201
* ```
202202
*/
203203
export type Updateable<R> = DrainOuterGeneric<{
204-
[K in UpdateKeys<R>]?: UpdateType<R[K]>
204+
[K in UpdateKeys<R>]?: UpdateType<R[K]> | undefined
205205
}>

0 commit comments

Comments
 (0)