UNPKG

@jsxc/jsxc

Version:

Real-time XMPP chat application with video calls, file transfer and encrypted communication

22 lines (12 loc) 292 B
export interface IJID { readonly full: string; readonly bare: string; readonly node: string; readonly domain: string; readonly resource: string; toString(): string; toEscapedString(): string; isBare(): boolean; isServer(): boolean; toBareJID(): IJID; }