Похожие чаты

How can I extract the type T from an Array<T>

in typescript? Is there a utility function that'll yield the generic?

2 ответов

9 просмотров

type ArrayItem<ArrType> = ArrType extends Array<infer T> ? T : never; type Inner = ArrayItem<ReturnType<typeof getStuff>>;

Похожие вопросы

Обсуждают сегодня

Карта сайта