28. implement IsEmptyType<T>

TypeScript

  -通过 / -执行

Implement IsEmptyType<T> to check if T is empty type {}.

type A = IsEmptyType<string> // falsetype B = IsEmptyType<{a: 3}> // falsetype C = IsEmptyType<{}> // truetype D = IsEmptyType<any> // falsetype E = IsEmptyType<object> // falsetype F = IsEmptyType<Object> // false

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