UNPKG

ngx-extended-pdf-viewer

Version:

Embedding PDF files in your Angular application. Highly configurable viewer including the toolbar, sidebar, and all the features you're used to.

16 lines (15 loc) 395 B
export interface IPDFViewerAppConfig { defaultUrl: string; filenameForDownload: string | undefined; sidebarViewOnLoad: 0 | 1; get(name: any): any; getAll(kind?: null): any; set(name: any, value: any): void; setAll(options: any): void; remove(name: any): void; /** * @ignore */ _hasUserOptions(): boolean; openFileInput?: HTMLInputElement; }