UNPKG

@pazznetwork/ngx-chat

Version:

[![Build status](https://api.travis-ci.com/pazznetwork/ngx-chat.svg?branch=master)](https://travis-ci.com/pazznetwork/ngx-chat) [![Coverage](https://coveralls.io/repos/github/pazznetwork/ngx-chat/badge.svg?branch=master)](https://coveralls.io/github/pazzn

14 lines (13 loc) 291 B
import { JID } from '@xmpp/jid'; export declare enum Affiliation { none = "none", outcast = "outcast", member = "member", admin = "admin", owner = "owner" } export interface AffiliationModification { userJid: JID; affiliation: Affiliation; reason?: string; }