Type alias PropertyOf<T>

PropertyOf<T>: T extends undefined
    ? string
    : keyof T & string

Type Parameters

  • T