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.
31 lines (30 loc) • 2.06 kB
TypeScript
import { AfterViewInit, ElementRef, EventEmitter, TemplateRef } from '@angular/core';
import * as i0 from "@angular/core";
export declare class PdfToolbarComponent implements AfterViewInit {
private elementRef;
customToolbar: TemplateRef<any> | undefined;
mobileFriendlyZoomScale: number;
primaryMenuVisible: boolean;
showBookmarkButton: boolean;
showDownloadButton: boolean;
showEditor: 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;
toolbarMarginTop: string;
toolbarWidth: string;
zoomLevels: (string | number)[];
onToolbarLoaded: EventEmitter<HTMLElement>;
constructor(elementRef: ElementRef);
ngAfterViewInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PdfToolbarComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PdfToolbarComponent, "pdf-toolbar", never, { "customToolbar": "customToolbar"; "mobileFriendlyZoomScale": "mobileFriendlyZoomScale"; "primaryMenuVisible": "primaryMenuVisible"; "showBookmarkButton": "showBookmarkButton"; "showDownloadButton": "showDownloadButton"; "showEditor": "showEditor"; "showFindButton": "showFindButton"; "showHandToolButton": "showHandToolButton"; "showOpenFileButton": "showOpenFileButton"; "showPrintButton": "showPrintButton"; "showPagingButtons": "showPagingButtons"; "showPresentationModeButton": "showPresentationModeButton"; "showRotateButton": "showRotateButton"; "showSecondaryToolbarButton": "showSecondaryToolbarButton"; "showSidebarButton": "showSidebarButton"; "showZoomButtons": "showZoomButtons"; "textLayer": "textLayer"; "toolbarMarginTop": "toolbarMarginTop"; "toolbarWidth": "toolbarWidth"; "zoomLevels": "zoomLevels"; }, { "onToolbarLoaded": "onToolbarLoaded"; }, never, ["*"]>;
}