From 17f6b25f4aee1c38f624c985da7bbb231bc5aed5 Mon Sep 17 00:00:00 2001 From: "Frederic R." Date: Fri, 27 Dec 2024 10:05:37 +0000 Subject: [PATCH] Import only hono type in util.ts util.ts is used by openauth client as well, so lets not import hono when we do not need it --- packages/openauth/src/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/openauth/src/util.ts b/packages/openauth/src/util.ts index 68d10efc..6d321a4e 100644 --- a/packages/openauth/src/util.ts +++ b/packages/openauth/src/util.ts @@ -1,4 +1,4 @@ -import { Context } from "hono" +import type { Context } from "hono" export type Prettify = { [K in keyof T]: T[K]