@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 676 B
TypeScript
import { Billing, Parameter, PdfPassword, Settings, Ocr } from "./../index";
export interface OcrOperationInterface {
billing?: Billing;
ocr: Ocr;
password?: PdfPassword;
settings?: Settings;
}
export declare class OcrOperation implements OcrOperationInterface, Parameter {
billing?: Billing;
ocr: Ocr;
password?: PdfPassword;
settings?: Settings;
constructor(data: any);
static getBillingDescription(): string;
static getOcrDescription(): string;
static getPasswordDescription(): string;
static getSettingsDescription(): string;
static fromJson(data: any): OcrOperation;
toJson(): any;
clone(): OcrOperation;
}