@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
16 lines (15 loc) • 467 B
TypeScript
import { AnalyzePdfa, Parameter, ConvertPdfa } from "./../index";
export interface PdfaInterface {
analyze?: AnalyzePdfa;
convert?: ConvertPdfa;
}
export declare class Pdfa implements PdfaInterface, Parameter {
analyze?: AnalyzePdfa;
convert?: ConvertPdfa;
constructor(data: any);
static getAnalyzeDescription(): string;
static getConvertDescription(): string;
static fromJson(data: any): Pdfa;
toJson(): any;
clone(): Pdfa;
}