henriqueinonhe / promises-training

Practice working with promises through a curated collection of interactive challenges. This repository provides a platform to refine your skills, complete with automated tests to to give you instant feedback and validate your progress.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Promise Any README has wrong type signature

TreyVigus opened this issue · comments

Should <T>(promises: Array<Promise<T>>) => Promise<Array<T>> be changed to <T>(promises: Array<Promise<T>>) => Promise<T> to match exercise.ts?