UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

17 lines (16 loc) 656 B
import { CompressProfile, Parameter, CompressObjects } from "./../index"; export interface CompressSettingsInterface { compressObjects?: CompressObjects; compressProfile?: CompressProfile; } export declare class CompressSettings implements CompressSettingsInterface, Parameter { compressObjects?: CompressObjects; compressProfile?: CompressProfile; constructor(data: any); static getCompressObjectsDescription(): string; static getCompressProfileDefault(): CompressProfile; static getCompressProfileDescription(): string; static fromJson(data: any): CompressSettings; toJson(): any; clone(): CompressSettings; }