oak icon indicating copy to clipboard operation
oak copied to clipboard

docs(testing.md): fix type MiddleWare not found to MiddleWare url

Open khk37601 opened this issue 4 years ago • 1 comments

The existing import statement causes Not Found.

change import type { Middleware } from "https://deno.land/x/mod.ts"; to import { testing, Middleware } from "https://deno.land/x/oak/mod.ts";

khk37601 avatar Sep 09 '21 06:09 khk37601

The documentation is correct. You should not import type only imports in Deno with import and instead use import type.

Can you be more specific on what error you are encountering?

kitsonk avatar Sep 17 '21 01:09 kitsonk