UNPKG

bipbop-microservices

Version:
8 lines (6 loc) 167 B
import { Schema } from 'jsonschema'; export type ServiceDefinition<P = any, R = any> = { call: (payload: P) => any; request: Schema; response: Schema; };