/** * Rsc - Endpoints * * @module server/services/rsc/endpoints */ export { parseActionBody } from "./action-parser.js"; export { handleActionRequest } from "./action-handler.js"; export { handleRSCEndpoint } from "./endpoint-router.js"; export { __resetRSCHandlerForTests, getRSCHandler } from "./handler-registry.js"; export { handleClientScript, handleDomScript } from "./script-handlers.js"; export type { ActionBody, ActionRequestParams, RSCEndpointParams } from "./types.js"; //# sourceMappingURL=index.d.ts.map