Skip to content

Type Alias: UnionToIntersection<U>

ts
type 
UnionToIntersection
<
U
> =
U
extends any
? (
k
) => void
: never extends (
k
) => void
?
I
: never;

Defined in: types/index.ts:8

Type Parameters

U

U

在 MIT 许可证下发布