@hsaadawy/ngx-chat
Version:
7 lines (6 loc) • 387 B
TypeScript
import { Element } from 'ltx';
export declare class StanzaBuilder {
static buildRoomMessage(from: string, roomJid: string, content?: Element[]): Element;
static buildRoomMessageWithBody(from: string, roomJid: string, body: string, content?: Element[]): Element;
static buildRoomMessageWithThread(from: string, roomJid: string, body: string, thread: string): Element;
}