Describe the feature
While adding types to variable assigned with toNodeHandler and toFetchHandler, AdapterMeta is missing:
import type { Express } from "express";
import type {
FetchHandler,
NodeHttpHandler,
AdapterMeta, // missing
} from "srvx";
import type { AdapterMeta } from "srvx/node"; // missing
import express from "express";
import { toFetchHandler, toNodeHandler } from "srvx/node";
const app: Express = express();
const fetchHandler: FetchHandler & AdapterMeta = toFetchHandler(app);
const nodeHandler: NodeHttpHandler & AdapterMeta = toNodeHandler(fetchHandler);
Additional information