UNPKG

type-enhancers

Version:
2 lines (1 loc) 108 B
export type IfElse<Condition extends boolean, IfTrue, IfFalse> = Condition extends true ? IfTrue : IfFalse;