Having some trouble with this line of code:
import {response, request, next} from 'express'
The typescript compiler in vscode is giving me the following error:
Module '"express"' has no exported member 'next'.
Update: I want to clarify that I am importing these types in a separate file from my main 'server.ts', so I'm looking for a solution that keeps my code clean and only imports what is absolutely necessary.