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