摘要: 写一个符合 `Promise A+` 规范的 `Promise` ### 类型定义 ```typescript // MyPromise.ts type resType = (value?: any) => void; type rejType = (reason?: any) => void; t 阅读全文
posted @ 2021-04-17 23:10 heteng99 阅读(31) 评论(0) 推荐(0) 编辑