UNPKG

type-enhancers

Version:
2 lines (1 loc) 93 B
export type If<Condition extends boolean, IfTrue> = Condition extends true ? IfTrue : never;