UNPKG
@sitecore/sc-contenthub-webclient-sdk
Version:
latest (1.2.100)
1.2.100
1.2.98
1.2.97
1.2.96
1.2.95
1.2.93
1.2.92
1.2.91
1.2.89
1.2.88
1.2.87
1.2.86
1.2.85
1.2.84
1.2.83
1.2.82
1.2.80
1.2.76
1.2.74
1.2.73
1.2.72
1.2.70
1.2.69
1.2.68
1.2.67
1.2.65
1.2.63
1.2.61
1.2.49
1.2.47
1.2.45
1.2.43
1.2.41
1.2.39
1.2.36
1.2.34
1.2.30
1.2.28
1.2.26
1.2.24
1.2.14
1.2.12
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.33
1.0.6
0.9.7
Sitecore Content Hub WebClient SDK.
@sitecore/sc-contenthub-webclient-sdk
/
dist
/
contracts
/
querying
/
iterator.d.ts
10 lines
(9 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Nullable
}
from
"../../base-types"
;
export
interface
IIterator
<T =
unknown
> {
current
:
Nullable
<T>;
canMoveNext
():
boolean
;
canMovePrevious
():
boolean
;
moveNextAsync
():
Promise
<
boolean
>;
movePreviousAsync
():
Promise
<
boolean
>;
reset
():
void
; }