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.
26 lines (25 loc) • 878 B
TypeScript
import { OnInit, TemplateRef, EventEmitter } from '@angular/core';
export declare class PdfToolbarComponent implements OnInit {
customToolbar: TemplateRef<any>;
mobileFriendlyZoomScale: number;
primaryMenuVisible: boolean;
showBookmarkButton: boolean;
showDownloadButton: boolean;
showFindButton: boolean | undefined;
showHandToolButton: boolean;
showOpenFileButton: boolean;
showPrintButton: boolean;
showPagingButtons: boolean;
showPresentationModeButton: boolean;
showRotateButton: boolean;
showSecondaryToolbarButton: boolean;
showSidebarButton: boolean;
showZoomButtons: boolean;
textLayer: boolean | undefined;
toolbarPaddingTop: string;
toolbarWidth: string;
zoomChange: EventEmitter<string | number>;
constructor();
ngOnInit(): void;
emitZoomChange(value: string | number): void;
}