UNPKG

nsrtm-gestionarchivo-npm-prueba2

Version:

Proyecto de Libreria Frontend para la Gestión de Archivos

44 lines (43 loc) 1.76 kB
import { HttpClient, HttpContext } from '@angular/common/http'; import { BaseService } from '../base-service'; import { ApiConfiguration } from '../api-configuration'; import { StrictHttpResponse } from '../strict-http-response'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class DescargaDocumentoControllerService extends BaseService { constructor(config: ApiConfiguration, http: HttpClient); /** * Path part for operation descargarDocumento */ static readonly DescargarDocumentoPath = "/descarga-documentos/descargar/{parametro}"; /** * Permite descargar un documento. * * Descarga publica de documentos * * This method provides access to the full `HttpResponse`, allowing access to response headers. * To access only the response body, use `descargarDocumento()` instead. * * This method doesn't expect any request body. */ descargarDocumento$Response(params: { parametro: string; context?: HttpContext; }): Observable<StrictHttpResponse<Blob>>; /** * Permite descargar un documento. * * Descarga publica de documentos * * This method provides access to only to the response body. * To access the full response (for headers, for example), `descargarDocumento$Response()` instead. * * This method doesn't expect any request body. */ descargarDocumento(params: { parametro: string; context?: HttpContext; }): Observable<Blob>; static ɵfac: i0.ɵɵFactoryDeclaration<DescargaDocumentoControllerService, never>; static ɵprov: i0.ɵɵInjectableDeclaration<DescargaDocumentoControllerService>; }