Skip to content

Home > @esengine/ecs-framework-monorepo > RpcMethodRegistry

RpcMethodRegistry type

RPC方法注册表类型

Signature:

typescript
export type RpcMethodRegistry = Map<string, {
    metadata: RpcMethodMetadata;
    handler: RpcMethod;
}>;

References: RpcMethodMetadata, RpcMethod

基于 MIT 许可证发布