37. implement SmallerThan<A, B>

TypeScript

  -通过 / -执行

请实现SmallerThan<A, B>

type A = SmallerThan<0, 1> // truetype B = SmallerThan<1, 0> // falsetype C = SmallerThan<10, 9> // false

争取10分钟以内搞定这个问题