UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 693 B
import { FileDataStoreInterface, Parameter, FileDataStore } from "./../index"; export interface GenericFileDataStoreInterface extends FileDataStoreInterface { fileContent?: string; fileName?: string; } export declare class GenericFileDataStore extends FileDataStore implements GenericFileDataStoreInterface, Parameter { fileContent?: string; fileName?: string; constructor(data: any); static getFileContentDefault(): string; static getFileContentDescription(): string; static getFileNameDefault(): string; static getFileNameDescription(): string; static fromJson(data: any): GenericFileDataStore; toJson(): any; clone(): GenericFileDataStore; }