12. 实现 ReturnType<T>
分享给更多人
-通过 / -执行
Parameters<T>处理的是参数,
ReturnType<T>
,正如起名所述,处理的是function type T的返回值type
请自行实现MyReturnType<T>
。
type Foo = () => {a: string}type A = MyReturnType<Foo> // {a: string}
-通过 / -执行
Parameters<T>处理的是参数,
ReturnType<T>
,正如起名所述,处理的是function type T的返回值type
请自行实现MyReturnType<T>
。
type Foo = () => {a: string}type A = MyReturnType<Foo> // {a: string}