From 57bbbb289b1a91a6d2af52fdddf2b477373d402a Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Wed, 9 Oct 2024 15:22:09 -0300 Subject: [PATCH] fix: types must have the type prefix apparently happens in Deno 2.0? --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index e58535c0..39d29a04 100644 --- a/src/app.ts +++ b/src/app.ts @@ -1,4 +1,4 @@ -import { Context, Env as HonoEnv, Handler, Hono, Input as HonoInput, MiddlewareHandler } from '@hono/hono'; +import { type Context, Env as HonoEnv, Handler, Hono, Input as HonoInput, MiddlewareHandler } from '@hono/hono'; import { cors } from '@hono/hono/cors'; import { serveStatic } from '@hono/hono/deno'; import { logger } from '@hono/hono/logger';