25. implement UnwrapPromise<T>

  -通过 / -执行

Implement UnwrapPromise<T> to return the resolved type of a promise.

type A = UnwrapPromise<Promise<string>> // string
type B = UnwrapPromise<Promise<null>> // null
type C = UnwrapPromise<null> // Error

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

(22)