UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 562 B
import { BaseToolbox, ToolboxAttachmentAttachment, BaseToolboxInterface, Parameter } from "./../index"; export interface ToolboxAttachmentInterface extends BaseToolboxInterface { attachment?: ToolboxAttachmentAttachment; } export declare class ToolboxAttachment extends BaseToolbox implements ToolboxAttachmentInterface, Parameter { attachment?: ToolboxAttachmentAttachment; constructor(data: any); static getAttachmentDescription(): string; static fromJson(data: any): ToolboxAttachment; toJson(): any; clone(): ToolboxAttachment; }