UNPKG

@vlad8096/stanza

Version:

Modern XMPP in the browser, with a JSON API

9 lines (8 loc) 247 B
import { Agent } from '../'; import { DiscoItemsResult } from '../protocol'; declare module '../' { interface Agent { getCommands(jid?: string): Promise<DiscoItemsResult>; } } export default function (client: Agent): void;