Type Alias UnsetPartial<T>

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

A type where all properties are made optional and with no value

Type Parameters

  • T