@fnlb-project/stanza
Version:
Modern XMPP in the browser, with a JSON API
14 lines (13 loc) • 586 B
JavaScript
;
// ====================================================================
// XEP-0199: XMPP Ping
// --------------------------------------------------------------------
// Source: https://xmpp.org/extensions/xep-0199.html
// Version: 2.0 (2009-06-03)
// ====================================================================
Object.defineProperty(exports, "__esModule", { value: true });
const jxt_1 = require("../jxt");
const Namespaces_1 = require("../Namespaces");
exports.default = (0, jxt_1.extendIQ)({
ping: (0, jxt_1.childBoolean)(Namespaces_1.NS_PING, 'ping')
});