UNPKG

bipbop-microservices

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