Type alias PropertyDescriptionsUpdate<T>

PropertyDescriptionsUpdate<T>: T extends undefined
    ? Record<string, string>
    : {
        [Property in keyof T]: string
    }

Type Parameters

  • T