/** * The generic raw data received. * * @typeParam DataType - The type of data contained in the response, incase of successful request. * * @public */ export interface IResponse { data: DataType; }