UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 506 B
import { BaseToolbox, BaseToolboxInterface, ToolboxRedactRedact, Parameter } from "./../index"; export interface ToolboxRedactInterface extends BaseToolboxInterface { redact?: ToolboxRedactRedact; } export declare class ToolboxRedact extends BaseToolbox implements ToolboxRedactInterface, Parameter { redact?: ToolboxRedactRedact; constructor(data: any); static getRedactDescription(): string; static fromJson(data: any): ToolboxRedact; toJson(): any; clone(): ToolboxRedact; }