UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 576 B
import { FileDataStoreInterface, Parameter, FileDataStore } from "./../index"; export interface BackgroundFileDataStoreInterface extends FileDataStoreInterface { fileContent?: string; } export declare class BackgroundFileDataStore extends FileDataStore implements BackgroundFileDataStoreInterface, Parameter { fileContent?: string; constructor(data: any); static getFileContentDefault(): string; static getFileContentDescription(): string; static fromJson(data: any): BackgroundFileDataStore; toJson(): any; clone(): BackgroundFileDataStore; }