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

NonNullableInsertKeys

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

type NonNullableInsertKeys<R> = [K in keyof R]: IfNotNullable<InsertType<R[K]>, K>[keyof R];

§Type Parameters

§Type

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