UNPKG
nsrtm-gestionarchivo-npm-prueba2
Version:
latest (0.0.8)
0.0.8
0.0.7
Proyecto de Libreria Frontend para la Gestión de Archivos
nsrtm-gestionarchivo-npm-prueba2
/
app
/
api
/
parametro-comun
/
strict-http-response.d.ts
8 lines
(7 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
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; };