UNPKG

nsrtm-gestionarchivo-npm-prueba2

Version:

Proyecto de Libreria Frontend para la Gestión de Archivos

8 lines (7 loc) 247 B
import { HttpResponse } from '@angular/common/http'; /** * Constrains the http response to not have the body defined as `T | null`, but `T` only. */ export declare type StrictHttpResponse<T> = HttpResponse<T> & { readonly body: T; };