Type Alias PartialAllowingNull<T>

PartialAllowingNull: { [P in keyof T]?: T[P] | null }

Like TypeScripts Partial but allowing null as a value.

Type Parameters

  • T