@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 374 B
TypeScript
import { Parameter } from "./index";
export interface DocumentsBodyInterface {
filedata?: Blob;
}
export declare class DocumentsBody implements DocumentsBodyInterface, Parameter {
filedata?: Blob;
constructor(data: any);
static getFiledataDescription(): string;
static fromJson(data: any): DocumentsBody;
toJson(): any;
clone(): DocumentsBody;
}