diff --git a/src/runtime/nitro.ts b/src/runtime/nitro.ts index 52bbe65597..e8bdee66e2 100644 --- a/src/runtime/nitro.ts +++ b/src/runtime/nitro.ts @@ -23,6 +23,9 @@ export { } from "h3"; export type { H3Event, EventHandlerRequest, EventHandlerWithFetch } from "h3"; +// srvx +export type { FastResponse, FastURL } from "srvx"; + // Runtime export function serverFetch( resource: string | URL | Request, diff --git a/src/types/srvx.ts b/src/types/srvx.ts index 4d2866bf14..d724a022c3 100644 --- a/src/types/srvx.ts +++ b/src/types/srvx.ts @@ -1 +1,5 @@ -export type { ServerRequest } from "srvx"; +export type { + ServerRequest, + ServerRequestContext, + ServerRuntimeContext, +} from "srvx";