stanza-extend
Version:
Modern XMPP in the browser, with a JSON API
17 lines (16 loc) • 331 B
TypeScript
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;