Type alias Expand<T>

Expand<T>: T extends infer obj
    ? {
        [key in keyof obj]: obj[key]
    }
    : never

Type Parameters

  • T