mss-doc-viewer
Version:
A simple typehead library developed by MSS development team to be used for document viewer
14 lines (13 loc) • 586 B
TypeScript
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { Document } from './_helpers/document.model';
import * as i0 from "@angular/core";
export declare class MssDocViewerService {
private _http;
constructor(_http: HttpClient);
getDocument(document: Document): Observable<Object>;
getXMLDoc(uri: string): Observable<string>;
downloadDoc(url: string): Observable<Blob>;
static ɵfac: i0.ɵɵFactoryDeclaration<MssDocViewerService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<MssDocViewerService>;
}