integreat
Version:
Node.js integration layer
5 lines (4 loc) • 311 B
TypeScript
import type { Action, Response, HandlerDispatch } from '../types.js';
import type Service from '../service/Service.js';
import type Endpoint from '../service/Endpoint.js';
export default function mutateAndSend(service: Service, endpoint: Endpoint, action: Action, dispatch: HandlerDispatch): Promise<Response>;