UNPKG
stanza-extend
Version:
latest (12.17.11)
12.17.11
12.17.10
12.17.9
12.17.8
12.17.7
12.17.6
12.17.5
12.17.4
12.17.2
12.17.1
Modern XMPP in the browser, with a JSON API
stanzajs.org
legastero/stanza
stanza-extend
/
protocol
/
xep0059.d.ts
14 lines
(13 loc)
•
303 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
DefinitionOptions
}
from
'../jxt'
;
export
interface
Paging
{
max
?:
number
;
before
?:
string
;
after
?:
string
;
first
?:
string
;
last
?:
string
;
count
?:
number
;
index
?:
number
;
firstIndex
?:
number
; }
declare
const
Protocol
:
DefinitionOptions
;
export
default
Protocol
;