Interface IRawResponse<DataType>

The generic raw data received.

interface IRawResponse<DataType> {
    data: DataType;
}

Type Parameters

  • DataType

    The type of data contained in the response, incase of successful request.

Properties

Properties

data: DataType