@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
30 lines (29 loc) • 1.19 kB
TypeScript
import { ExtractionImageFormat, Parameter, ExtractionFileFormat } from "./../index";
export interface ExtractionImagesInterface {
fallbackFormat?: ExtractionImageFormat;
fileFormat?: ExtractionFileFormat;
fileNameTemplate?: string;
folderNameTemplate?: string;
pages?: string;
}
export declare class ExtractionImages implements ExtractionImagesInterface, Parameter {
fallbackFormat?: ExtractionImageFormat;
fileFormat?: ExtractionFileFormat;
fileNameTemplate?: string;
folderNameTemplate?: string;
pages?: string;
constructor(data: any);
static getFallbackFormatDefault(): ExtractionImageFormat;
static getFallbackFormatDescription(): string;
static getFileFormatDefault(): ExtractionFileFormat;
static getFileFormatDescription(): string;
static getFileNameTemplateDefault(): string;
static getFileNameTemplateDescription(): string;
static getFolderNameTemplateDefault(): string;
static getFolderNameTemplateDescription(): string;
static getPagesDefault(): string;
static getPagesDescription(): string;
static fromJson(data: any): ExtractionImages;
toJson(): any;
clone(): ExtractionImages;
}