@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
18 lines (17 loc) • 649 B
TypeScript
import { Parameter, ExtractionFileFormat } from "./../index";
export interface ExtractionParagraphsInterface {
fileFormat?: ExtractionFileFormat;
pages?: string;
}
export declare class ExtractionParagraphs implements ExtractionParagraphsInterface, Parameter {
fileFormat?: ExtractionFileFormat;
pages?: string;
constructor(data: any);
static getFileFormatDefault(): ExtractionFileFormat;
static getFileFormatDescription(): string;
static getPagesDefault(): string;
static getPagesDescription(): string;
static fromJson(data: any): ExtractionParagraphs;
toJson(): any;
clone(): ExtractionParagraphs;
}