TS2577
error TS2577: Return type annotation circularly references itself.
Broken Code ❌
1 |
|
Fixed Code ✔️
You can remove the circular reference by removing the explicit return type (OurReply
) from the signature of your function:
1 |
|
error TS2577: Return type annotation circularly references itself.
1 |
|
You can remove the circular reference by removing the explicit return type (OurReply
) from the signature of your function:
1 |
|