UNPKG

json-schema-to-ts

Version:
2 lines (1 loc) 102 B
export type If<CONDITION extends boolean, THEN, ELSE = never> = CONDITION extends true ? THEN : ELSE;