Interface IResult<TData>

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

  • data
  • res

Type Parameters

  • TData

    generic type

Hierarchy

  • IResultBase<TData>
    • IResult

Properties

Properties

data: TData

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

paging?: Paging<TData>

Server response of type IFetchResponse.