Skip to content
Advertisement

An interface can only extend an identifier/qualified-name with optional type arguments. ts(2499)

I am trying to create a new extended interface for express.RequestHandler but this error seems to come up. I cannot understand why.

JavaScript

The express.RequestHandler interface does not support async functions. It says

JavaScript

Here are my interfaces

JavaScript

Advertisement

Answer

It seems you are trying to extend the express.Request interface.

Try:

JavaScript

enter image description here

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement