/** Minimal Gateway request surface consumed by the reusable node-host runtime. */ import type { GatewayClientRequestOptions } from "../gateway/client.js"; export type NodeHostClient = { request>( method: string, params?: unknown, opts?: GatewayClientRequestOptions, ): Promise; };