converse.js
Version:
Browser based XMPP chat client
21 lines • 464 B
TypeScript
export const VIEW_PLUGINS: string[];
export namespace PRETTY_CHAT_STATUS {
let offline: any;
let unavailable: any;
let xa: any;
let away: any;
let dnd: any;
let chat: any;
let online: any;
}
export const MOBILE_CUTOFF: 768;
export type PrettyChatStatus = {
offline: string;
unavailable: string;
xa: string;
away: string;
dnd: string;
chatty: string;
online: string;
};
//# sourceMappingURL=constants.d.ts.map