@reactivemarkets/switchboard-sdk
Version:
SDK for the Reactive Markets Switchboard
12 lines (11 loc) • 346 B
TypeScript
import { IRejectBuilder } from "./iRejectBuilder";
/**
* The Reject message is sent when a message is badly formed, has missing tags,
* or does not pass basic validation. The Reject message may be sent by either
* the taker or maker.
*
* ```ts
* const bytes = reject().build();
* ```
*/
export declare const reject: () => IRejectBuilder;