Intermediate TypeScript
Q75 / 100

What does the "Awaited<T>" utility type do?

Correct! Well done.

Incorrect.

The correct answer is A) Recursively unwraps the type from inside a Promise

A

Correct Answer

Recursively unwraps the type from inside a Promise

Explanation

Awaited<T> models the type returned by awaiting a Promise, recursively unwrapping nested Promises.

Progress
75/100