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.
20 lines (19 loc) • 525 B
TypeScript
import { OnInit, ElementRef } from '@angular/core';
interface ZoomLevel {
id: string;
dataL10nId: string;
dataL10nArgs: string | undefined;
value: string;
displayValue: string;
}
export declare class PdfZoomDropdownComponent implements OnInit {
private element;
_zoomLevels: Array<ZoomLevel>;
set zoomLevels(levels: Array<string | number>);
sizeSelector: any;
constructor(element: ElementRef);
ngOnInit(): void;
private valueToZoomLevel;
private snakeToCamel;
}
export {};