UNPKG

@reactivemarkets/switchboard-sdk

Version:
16 lines (15 loc) 481 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.reject = void 0; const rejectBuilder_1 = require("./rejectBuilder"); /** * 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(); * ``` */ const reject = () => new rejectBuilder_1.RejectBuilder(); exports.reject = reject;