UNPKG

stanza-extend

Version:

Modern XMPP in the browser, with a JSON API

12 lines (11 loc) 357 B
import { DefinitionOptions } from '../jxt'; import { NS_JINGLE_IBB_1 } from '../Namespaces'; import { JingleTransport } from './'; export interface JingleIBB extends JingleTransport { transportType: typeof NS_JINGLE_IBB_1; sid: string; blockSize?: number; ack?: boolean; } declare const Protocol: DefinitionOptions; export default Protocol;