@atomiqlabs/sdk
Version:
atomiq labs SDK for cross-chain swaps between smart chains and bitcoin
15 lines (14 loc) • 423 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isIAddressSwap = void 0;
/**
* Type guard to check if an object is an {@link IAddressSwap}
*
* @category Swaps/Types
*/
function isIAddressSwap(obj) {
return obj != null &&
typeof (obj.getAddress) === "function" &&
typeof (obj.getHyperlink) === "function";
}
exports.isIAddressSwap = isIAddressSwap;