Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NullableInsertKeys

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

type NullableInsertKeys<R> = [K in keyof R]: IfNullable<InsertType<R[K]>, K>[keyof R];

§Type Parameters

§Type

§
[K in keyof R]: IfNullable<InsertType<R[K]>, K>[keyof R]
[src]