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

Nullable

Makes all properties of object type T nullable.

type Nullable<T> = [P in keyof T]: T[P] | null;

§Type Parameters

§Type

§
[P in keyof T]: T[P] | null
[src]