UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

22 lines (21 loc) 777 B
import { Parameter } from "./../index"; export interface ConverterReportInterface { contentProblems?: boolean; fontAliasUsage?: boolean; fontIsMissing?: boolean; } export declare class ConverterReport implements ConverterReportInterface, Parameter { contentProblems?: boolean; fontAliasUsage?: boolean; fontIsMissing?: boolean; constructor(data: any); static getContentProblemsDefault(): boolean; static getContentProblemsDescription(): string; static getFontAliasUsageDefault(): boolean; static getFontAliasUsageDescription(): string; static getFontIsMissingDefault(): boolean; static getFontIsMissingDescription(): string; static fromJson(data: any): ConverterReport; toJson(): any; clone(): ConverterReport; }