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) • 1.14 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 PdfFirstPageComponent implements OnDestroy {
show: import("@angular/core").InputSignal<ResponsiveVisibility>;
disable: import("@angular/core").InputSignal<boolean>;
disableFirstPage: boolean;
private PDFViewerApplication;
private eventBusAbortController;
constructor(notificationService: PDFNotificationService);
firstPage(): void;
onPdfJsInit(): void;
ngOnDestroy(): void;
updateUIState(event: UpdateUIStateEvent): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PdfFirstPageComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PdfFirstPageComponent, "pdf-first-page", never, { "show": { "alias": "show"; "required": false; "isSignal": true; }; "disable": { "alias": "disable"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
}