@reactivemarkets/switchboard-sdk
Version:
SDK for the Reactive Markets Switchboard
12 lines (11 loc) • 358 B
TypeScript
import { IHeartbeatBuilder } from "./iHeartbeatBuilder";
/**
* The Heartbeat message is used to ensure that sessions remain active and to
* test the session status. The receiving side is not expected to respond to
* a Heartbeat message.
*
* ```ts
* const bytes = heartbeat().build();
* ```
*/
export declare const heartbeat: () => IHeartbeatBuilder;