TS2794
error TS2794: Expected 1 arguments, but got 0. Did you forget to include ‘
void
‘ in your type argument to ‘Promise
‘?
Broken Code ❌
1 |
|
Fixed Code ✔️
When a Promise resolves with nothing, you need to define this return type (void
) in recent versions of TypeScript:
1 |
|