@vlad8096/stanza
Version:
Modern XMPP in the browser, with a JSON API
13 lines (12 loc) • 324 B
TypeScript
import { DefinitionOptions } from '../jxt';
declare module './' {
interface Message {
marker?: ChatMarker;
}
}
export interface ChatMarker {
type: 'markable' | 'received' | 'displayed' | 'acknowledged';
id?: string;
}
declare const Protocol: DefinitionOptions[];
export default Protocol;