Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 2.16 KB

README.zh-CN.md

File metadata and controls

15 lines (9 loc) · 2.16 KB

Awaited 简单 #promise #built-in

by Maciej Sikora @maciejsikora

接受挑战    English 日本語 한국어

假如我们有一个 Promise 对象,这个 Promise 对象会返回一个类型。在 TS 中,我们用 Promise 中的 T 来描述这个 Promise 返回的类型。请你实现一个类型,可以获取这个类型。

例如:Promise<ExampleType>,请你返回 ExampleType 类型。

type ExampleType = Promise<string>

type Result = MyAwaited<ExampleType> // string

这个挑战来自于 @maciejsikora 的文章:original article


返回首页 分享你的解答 查看解答