Home > @esengine/ecs-framework-monorepo > ClientRpcInvoker
ClientRpcInvoker type
客户端RPC调用接口类型
Signature:
typescript
export type ClientRpcInvoker = <TArgs extends readonly unknown[], TReturn>(methodName: string, args: TArgs, options?: Partial<RpcOptions>) => Promise<TReturn>;
References: RpcOptions