UNPKG

pdfmake-wrapper

Version:

Wrapper based on pdfmake library to generate PDF documents in an easy and readable way.

13 lines 423 B
/** * Defines the permission options */ export interface IPermissions { readonly printing?: 'highResolution' | 'lowResolution'; readonly modifying?: boolean; readonly copying?: boolean; readonly annotating?: boolean; readonly fillingForms?: boolean; readonly contentAccessibility?: boolean; readonly documentAssembly?: boolean; } //# sourceMappingURL=permissions.interface.d.ts.map