UNPKG

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) 506 B
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(): Promise<any>; /** shamelessly copied from pdf.js */ private toDateObject; }