UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 505 B
import { Parameter, Attachment } from "./../index"; export interface AttachmentsDocumentInterface { attachment?: Array<Attachment>; } export declare class AttachmentsDocument implements AttachmentsDocumentInterface, Parameter { attachment?: Array<Attachment>; constructor(data: any); static getAttachmentDefault(): Array<Attachment>; static getAttachmentDescription(): string; static fromJson(data: any): AttachmentsDocument; toJson(): any; clone(): AttachmentsDocument; }