UNPKG

picorpc

Version:

A tiny RPC library and spec, inspired by JSON-RPC 2.0 and tRPC.

4 lines (3 loc) 239 B
import type { IProcedures, IAbstractServerOptions, IAbstractServer } from '../types'; declare const createAbstractServer: <T extends IProcedures>(options: IAbstractServerOptions<T>) => IAbstractServer; export default createAbstractServer;