Type alias NullableInsertKeys<R>

NullableInsertKeys<R>: {
    [K in keyof R]: IfNullable<InsertType<R[K]>, K>
}[keyof R]

Keys of R whose InsertType values can be null or undefined.

Type Parameters

  • R

Generated using TypeDoc