@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
19 lines (18 loc) • 780 B
TypeScript
import { RemoveToolboxAttachment, Parameter, AddToolboxAttachment, ExtractToolboxAttachment } from "./../index";
export interface ToolboxAttachmentAttachmentInterface {
add?: AddToolboxAttachment;
extract?: ExtractToolboxAttachment;
remove?: RemoveToolboxAttachment;
}
export declare class ToolboxAttachmentAttachment implements ToolboxAttachmentAttachmentInterface, Parameter {
add?: AddToolboxAttachment;
extract?: ExtractToolboxAttachment;
remove?: RemoveToolboxAttachment;
constructor(data: any);
static getAddDescription(): string;
static getExtractDescription(): string;
static getRemoveDescription(): string;
static fromJson(data: any): ToolboxAttachmentAttachment;
toJson(): any;
clone(): ToolboxAttachmentAttachment;
}