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.
22 lines (21 loc) • 1.36 kB
TypeScript
import { OnDestroy } 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 implements OnDestroy {
showRotateButton: import("@angular/core").InputSignal<ResponsiveVisibility>;
disableRotate: boolean;
clockwise: import("@angular/core").InputSignal<boolean>;
counterClockwise: import("@angular/core").InputSignal<boolean>;
private PDFViewerApplication;
private eventBusAbortController;
constructor(notificationService: PDFNotificationService);
rotateCW: () => void;
rotateCCW: () => void;
onPdfJsInit(): void;
ngOnDestroy(): 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; "isSignal": true; }; "clockwise": { "alias": "clockwise"; "required": false; "isSignal": true; }; "counterClockwise": { "alias": "counterClockwise"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
}