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