Type alias PartialAllowingNull<T>

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

Like TypeScripts Partial but allowing null as a value.

Type Parameters

  • T