Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IResultList<TData>

The IResultList interface splits up the server response in different fragments, namely in:

  • data[]
  • paging
  • res

Type parameters

  • TData

    generic type

Hierarchy

Index

Properties

Properties

data

data: TData[]

Holds the data from server response in a generic way. TData could be of any type, for example:

Response data as array.

Optional paging

paging: Paging<TData>

Paging allows you to query the next and previous data chunks in a convenient way. You can also go to a specific page or just read page information about the current data chunk. For a detailed view see Paging

res

Server response of type IFetchResponse.

Generated using TypeDoc