UNPKG

@protobuf-ts/runtime-rpc

Version:

Runtime library for RPC clients generated by the protoc plugin "protobuf-ts"

18 lines (17 loc) 1.3 kB
export { ServiceType } from './service-type'; export { MethodInfo, PartialMethodInfo, ServiceInfo, readMethodOptions, readMethodOption, readServiceOption } from './reflection-info'; export { RpcError } from './rpc-error'; export { RpcMetadata } from './rpc-metadata'; export { RpcOptions, mergeRpcOptions } from './rpc-options'; export { RpcInputStream } from './rpc-input-stream'; export { RpcOutputStream, RpcOutputStreamController } from './rpc-output-stream'; export { RpcStatus } from './rpc-status'; export { RpcTransport } from './rpc-transport'; export { TestTransport } from './test-transport'; export { Deferred, DeferredState } from './deferred'; export { DuplexStreamingCall } from './duplex-streaming-call'; export { ClientStreamingCall } from './client-streaming-call'; export { ServerStreamingCall, FinishedServerStreamingCall } from './server-streaming-call'; export { UnaryCall, FinishedUnaryCall } from './unary-call'; export { NextUnaryFn, RpcInterceptor, NextClientStreamingFn, NextDuplexStreamingFn, NextServerStreamingFn, stackIntercept, stackDuplexStreamingInterceptors, stackClientStreamingInterceptors, stackServerStreamingInterceptors, stackUnaryInterceptors } from './rpc-interceptor'; export { ServerCallContext, ServerCallContextController } from './server-call-context';