import { serverFunctions } from "../rpc/index.mjs"; import { DevframeNodeContext } from "devframe"; //#region src/node/index.d.ts /** * Register the inspector's introspection RPC functions on a devframe * node context. Called from the definition's `setup(ctx)` and reusable * by host adapters that wire their own context. */ declare function setupInspect(ctx: DevframeNodeContext): void; //#endregion export { serverFunctions, setupInspect };