@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
23 lines (22 loc) • 702 B
TypeScript
import { Parameter, SvgFormat } from "./../index";
export interface HtmlTranscribeInterface {
dpi?: number;
pages?: string;
svgFormat?: SvgFormat;
}
export declare class HtmlTranscribe implements HtmlTranscribeInterface, Parameter {
dpi?: number;
pages?: string;
svgFormat?: SvgFormat;
constructor(data: any);
static getDpiDefault(): number;
static getDpiDescription(): string;
static getDpiMin(): number;
static getDpiMax(): number;
static getPagesDefault(): string;
static getPagesDescription(): string;
static getSvgFormatDescription(): string;
static fromJson(data: any): HtmlTranscribe;
toJson(): any;
clone(): HtmlTranscribe;
}