Type alias NonNullableInsertKeys<R>

NonNullableInsertKeys<R>: {
    [K in keyof R]: IfNotNullable<InsertType<R[K]>, K>
}[keyof R]

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

Type Parameters

  • R

Generated using TypeDoc