@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 451 B
TypeScript
import { Parameter } from "./../index";
export interface SanitizeAttachmentsInterface {
enabled?: boolean;
}
export declare class SanitizeAttachments implements SanitizeAttachmentsInterface, Parameter {
enabled?: boolean;
constructor(data: any);
static getEnabledDefault(): boolean;
static getEnabledDescription(): string;
static fromJson(data: any): SanitizeAttachments;
toJson(): any;
clone(): SanitizeAttachments;
}