/* tslint:disable */
import { HttpResponse } from '@angular/common/http';

/**
 * Constrains the http to not expand the response type with `| null`
 */
export type StrictHttpResponse<T> = HttpResponse<T> & {
  readonly body: T;
}
