src/modules/http/entities/response/single-item-response-wrapper.entity.intf.ts
        
This class is used by the StarkHttpService in order to wrap the Http response from all requests aimed to return a single item.
import { StarkResponseWrapper } from "./response-wrapper.entity.intf";
import { StarkResource } from "../resource.entity.intf";
/**
 * This class is used by the {@link StarkHttpService} in order to wrap the Http response from all requests aimed to return a single item.
 */
export interface StarkSingleItemResponseWrapper<T extends StarkResource> extends StarkResponseWrapper<T> {}