Goal: If we have a type which is wrapped type like `Promise`. How we can get a type which is inside the wrapped type? For example if we have `Promise<ExampleType>` how to get `ExampleType`? Source challenge: https://github.com/type-challenges/type-challenges/tree/main/questions/00189-easy-awaited Reference explanation: https://github.com/ghaiklor/type-challenges-solutions/blob/main/en/easy-awaited.md
Run "Check Solution" to validate your code in the browser.