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.
21 lines (20 loc) • 1.18 kB
TypeScript
import { ChangeDetectorRef } from '@angular/core';
import { UpdateUIStateEvent } from '../../events/update-ui-state-event';
import { ResponsiveVisibility } from '../../responsive-visibility';
import { PDFNotificationService } from './../../pdf-notification-service';
import * as i0 from "@angular/core";
export declare class PdfRotatePageComponent {
private changeDetectorRef;
showRotateButton: ResponsiveVisibility;
disableRotate: boolean;
clockwise: boolean;
counterClockwise: boolean;
private PDFViewerApplication;
constructor(notificationService: PDFNotificationService, changeDetectorRef: ChangeDetectorRef);
rotateCW(): void;
rotateCCW(): void;
onPdfJsInit(): void;
updateUIState(event: UpdateUIStateEvent): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PdfRotatePageComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PdfRotatePageComponent, "pdf-rotate-page", never, { "showRotateButton": { "alias": "showRotateButton"; "required": false; }; "clockwise": { "alias": "clockwise"; "required": false; }; "counterClockwise": { "alias": "counterClockwise"; "required": false; }; }, {}, never, never, false, never>;
}