UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 502 B
import { FileAttachment, Parameter } from "./../index"; export interface AddToolboxAttachmentInterface { file?: Array<FileAttachment>; } export declare class AddToolboxAttachment implements AddToolboxAttachmentInterface, Parameter { file?: Array<FileAttachment>; constructor(data: any); static getFileDefault(): Array<FileAttachment>; static getFileDescription(): string; static fromJson(data: any): AddToolboxAttachment; toJson(): any; clone(): AddToolboxAttachment; }