Missing express types
Hey, I'm trying to use deno 1.46.3 with
What can I do?
express + @types/express, but it seems the types aren't being appliedWhat can I do?

express@types/express// @deno-types="@types/express"
import express from "express";
const app = express();
const port = Deno.env.get("APP_PORT") || 3000;
app.get("/:name", (request, response) => {
const name: string = request.params.name;
response.send("Hello " + name);
});
if (import.meta.main) {
app.listen(port, () =>
console.log(`Listening on :${port}`)
);
}