UNPKG

@jsxc/jsxc

Version:

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

22 lines (15 loc) 365 B
export interface IIdentity { category: string; type: string; name?: string; lang?: string; } export interface IDiscoInfo { getIdentities(): IIdentity[]; getFeatures(): string[]; getForms(); getFormByType(type: string); getCapsVersion(): String; hasFeature(features: string[]): boolean; hasFeature(feature: string): boolean; }