import { Http2Bindings, HttpBindings } from "@hono/node-server";
import { Context as HonoContext } from "hono";

//#region src/types/index.d.ts
type NodeEnv = {
  Bindings: HttpBindings | Http2Bindings;
};
//#endregion
export { type HonoContext, NodeEnv };