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.
17 lines (16 loc) • 458 B
TypeScript
import { PdfSidebarView } from './pdf-sidebar-views';
export interface IPDFViewerAppConfig {
defaultUrl: string;
filenameForDownload: string | undefined;
sidebarViewOnLoad: PdfSidebarView;
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;
}