UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 619 B
import { Parameter, ExtractionFileFormat } from "./../index"; export interface ExtractionInfoInterface { fileFormat?: ExtractionFileFormat; pages?: string; } export declare class ExtractionInfo implements ExtractionInfoInterface, Parameter { fileFormat?: ExtractionFileFormat; pages?: string; constructor(data: any); static getFileFormatDefault(): ExtractionFileFormat; static getFileFormatDescription(): string; static getPagesDefault(): string; static getPagesDescription(): string; static fromJson(data: any): ExtractionInfo; toJson(): any; clone(): ExtractionInfo; }