Type alias PartialExactOptional<T>

PartialExactOptional<T>: {
    [P in keyof T]?: T[P]
}

An implementation of the built-in Partial utility that allows explicit undefined values when exactOptionalPropertyTypes is enabled.

Type Parameters

  • T

Generated using TypeDoc