@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 546 B
TypeScript
import { FileDataStoreInterface, Parameter, FileDataStore } from "./../index";
export interface LogoFileDataStoreInterface extends FileDataStoreInterface {
fileContent?: string;
}
export declare class LogoFileDataStore extends FileDataStore implements LogoFileDataStoreInterface, Parameter {
fileContent?: string;
constructor(data: any);
static getFileContentDefault(): string;
static getFileContentDescription(): string;
static fromJson(data: any): LogoFileDataStore;
toJson(): any;
clone(): LogoFileDataStore;
}