UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 440 B
import { Parameter, Image } from "./../index"; export interface ImagesDocumentInterface { image?: Array<Image>; } export declare class ImagesDocument implements ImagesDocumentInterface, Parameter { image?: Array<Image>; constructor(data: any); static getImageDefault(): Array<Image>; static getImageDescription(): string; static fromJson(data: any): ImagesDocument; toJson(): any; clone(): ImagesDocument; }