UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 489 B
import { Parameter, PdfaEditProfile } from "./../index"; export interface PdfaSettingsInterface { pdfaEditProfile?: PdfaEditProfile; } export declare class PdfaSettings implements PdfaSettingsInterface, Parameter { pdfaEditProfile?: PdfaEditProfile; constructor(data: any); static getPdfaEditProfileDefault(): PdfaEditProfile; static getPdfaEditProfileDescription(): string; static fromJson(data: any): PdfaSettings; toJson(): any; clone(): PdfaSettings; }