@fnlb-project/stanza
Version:
Modern XMPP in the browser, with a JSON API
13 lines (12 loc) • 591 B
JavaScript
// ====================================================================
// XEP-0085: Chat State Notifications
// --------------------------------------------------------------------
// Source: https://xmpp.org/extensions/xep-0085.html
// Version: 2.1 (2009-09-23)
// ====================================================================
import { ChatState } from '../Constants';
import { childEnum, extendMessage } from '../jxt';
import { NS_CHAT_STATES } from '../Namespaces';
export default extendMessage({
chatState: childEnum(NS_CHAT_STATES, Object.values(ChatState))
});