UNPKG
@vlad8096/stanza
Version:
latest (12.15.0)
12.15.0
Modern XMPP in the browser, with a JSON API
stanzajs.org
legastero/stanza
@vlad8096/stanza
/
protocol
/
xep0343.d.ts
14 lines
(13 loc)
•
315 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
DefinitionOptions
}
from
'../jxt'
;
export
interface
JingleSctpMap
{
port
:
number
;
protocol
:
string
;
streams
?:
string
; }
declare
module
'./xep0176'
{
interface
JingleIce
{
sctp
?:
JingleSctpMap
; } }
declare
const
Protocol
:
DefinitionOptions
;
export
default
Protocol
;