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) • 623 B
TypeScript
import { IPDFViewerApplication } from './options/pdf-viewer-application';
export interface PdfDocumentInfo {
author?: string;
creationDate?: Date;
creator?: string;
keywords?: string;
linearized?: boolean;
maybeFileSize?: string;
modificationDate?: Date;
pdfFormatVersion?: string;
producer?: string;
subject?: string;
title?: string;
}
export declare class PdfDocumentPropertiesExtractor {
private pdfDateStringRegex;
getDocumentProperties(PDFViewerApplication: IPDFViewerApplication): Promise<any>;
/** shamelessly copied from pdf.js */
private toDateObject;
}