krpc-js
Version:
KRPC client for NodeJs/Bun
10 lines (7 loc) • 297 B
TypeScript
import { ClientOptions } from '@grpc/grpc-js';
export { ClientOptions } from '@grpc/grpc-js';
import { ServiceConfig, RpcService } from 'krpc-base';
declare class RpcClient {
static create(c: ServiceConfig, options?: ClientOptions): RpcService;
}
export { RpcClient, RpcClient as default };