Type Alias AtLeastOne<T>

AtLeastOne<T>: {
    [K in keyof T]: Pick<T, K>
}[keyof T] & Partial<T>

Type Parameters

  • T
""