stanza-extend
Version:
Modern XMPP in the browser, with a JSON API
16 lines (15 loc) • 323 B
TypeScript
import { DefinitionOptions } from '../jxt';
declare module './' {
interface Message {
links?: Link[];
}
interface IQPayload {
transferLink?: Link;
}
}
export interface Link {
url?: string;
description?: string;
}
declare const Protocol: DefinitionOptions[];
export default Protocol;