UNPKG
furystack-core
Version:
latest (1.0.0-alpha-15)
1.0.0-alpha-9
1.0.0-alpha-8
1.0.0-alpha-7
1.0.0-alpha-6
1.0.0-alpha-5
1.0.0-alpha-4
1.0.0-alpha-3
1.0.0-alpha-2
1.0.0-alpha-15
1.0.0-alpha-14
1.0.0-alpha-13
1.0.0-alpha-12
1.0.0-alpha-11
1.0.0-alpha-10
1.0.0-alpha-1
FuryStack framework, Core package
github.com/FuryTechs/furystack-core
FuryTechs/furystack-core
furystack-core
/
dist
/
api
/
http-models
/
CollectionResult.d.ts
8 lines
(7 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
class
CollectionResult
<T> {
value
:
Array
<
Partial
<T>>;
"@odata.context"
?:
string
;
"@odata.nextlink"
?:
string
;
"@odata.count"
?:
number
;
constructor
(
value
:
Array
<
Partial
<T>>,
count
?:
number
,
context
?:
string
,
nextlink
?:
string
); }