UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

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