UNPKG

@vlad8096/stanza

Version:

Modern XMPP in the browser, with a JSON API

17 lines (16 loc) 347 B
import { DefinitionOptions } from '../jxt'; declare module './' { interface Message { delay?: Delay; } interface Presence { delay?: Delay; } } export interface Delay { from?: string; timestamp: Date; reason?: string; } declare const Protocol: DefinitionOptions; export default Protocol;