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) • 569 B
TypeScript
import { PDFNotificationService } from './../../pdf-notification-service';
import { UpdateUIStateEvent } from '../../events/update-ui-state-event';
export declare class PdfRotatePageComponent {
private notificationService;
showRotateButton: boolean;
disableRotate: boolean;
clockwise: boolean;
counterClockwise: boolean;
private button1;
private button2;
constructor(notificationService: PDFNotificationService);
rotateCW(): void;
rotateCCW(): void;
onPdfJsInit(): void;
updateUIState(event: UpdateUIStateEvent): void;
}