@reactivemarkets/switchboard-sdk
Version:
SDK for the Reactive Markets Switchboard
15 lines (14 loc) • 472 B
TypeScript
import { ITestRequestBuilder } from "./iTestRequestBuilder";
/**
* The Test Request message forces a Heartbeat message from the opposing
* application. The Test Request message may be sent by either the taker or
* smaker.
*
* The opposite application responds to the Test Request message with a
* Heartbeat message containing the request id.
*
* ```ts
* const bytes = testRequest().build();
* ```
*/
export declare const testRequest: () => ITestRequestBuilder;