( /** * The entity type name. */ type: Type, /** * The schema definition for messages that the entity is capable of * processing. */ protocol: Rpcs )
| 445 | * same tag, the resulting protocol keeps the later definition for that tag. |
| 446 | * |
| 447 | * @see {@link fromRpcGroup} for creating an entity from an existing `RpcGroup` |
| 448 | * |
| 449 | * @category constructors |
| 450 | * @since 4.0.0 |
| 451 | */ |
| 452 | export const make = <const Type extends string, Rpcs extends ReadonlyArray<Rpc.Any>>( |
| 453 | /** |
| 454 | * The entity type name. |
| 455 | */ |
| 456 | type: Type, |
| 457 | /** |
| 458 | * The schema definition for messages that the entity is capable of |
| 459 | * processing. |
| 460 | */ |
no test coverage detected
searching dependent graphs…