API reference / @evolu/common / Evolu/Protocol / ApplyProtocolMessageAsClientResult
Type Alias: ApplyProtocolMessageAsClientResult
type ApplyProtocolMessageAsClientResult =
| {
message: ProtocolMessage;
type: "response";
}
| {
type: "no-response";
}
| {
type: "broadcast";
};
Defined in: packages/common/src/Evolu/Protocol.ts:875
Result type for applyProtocolMessageAsClient that distinguishes between responses to client requests and broadcast messages.