⬅️ FEM TypeScript Fundamentals
Promises
- TypeScript needs to statically type promises, just like it does for other code.
- All promises have the type
Promise<T>
, whereT
is the type of the value inside the promise - It’s easy to forget to give functions a
Promise
return type.