25. implement UnwrapPromise<T>
分享给更多人
-通过 / -执行
Implement UnwrapPromise<T>
to return the resolved type of a promise.
type A = UnwrapPromise<Promise<string>> // stringtype B = UnwrapPromise<Promise<null>> // nulltype C = UnwrapPromise<null> // Error