I need to include the 'express' module in my app.
According to Mozilla's documentation, we should use the following code:
import { Application }, * as Express from 'express'
However, when using it in TypeScript and VSCode, I encounter errors and end up using this code instead:
import * as Express from 'express'
import { Application } from 'express'
How can I resolve this issue?