UNPKG

@fnlb-project/stanza

Version:

Modern XMPP in the browser, with a JSON API

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