UNPKG

phecda-server

Version:

server framework that provide IOC/type-reuse/http&rpc-adaptor

15 lines (12 loc) 340 B
import { B as BaseCtx, D as DefaultOptions } from './meta-EGS-4cNY.js'; interface RpcServerOptions extends DefaultOptions { defaultQueue?: string; } interface RpcCtx extends BaseCtx { args: any[]; id: string; queue: string; isEvent?: boolean; category: 'rpc'; } export type { RpcCtx as R, RpcServerOptions as a };