-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
My code:
import { App, Router } from "https://deno.land/x/[email protected]/mod.ts";
const app = new App();
app.get("/:id", (req, res) => {
console.log(req.params);
res.status(200).send(`id: ${req.params.id}`);
});
app.listen({ port: 1001 }); // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Error: Argument of type '{ port: number; }' is not assignable to parameter of type 'number'.deno-ts(2345)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels