UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

30 lines (29 loc) 918 B
import { Parameter } from "./../index"; export interface HistoryEntryInterface { active?: boolean; dateTime?: string; fileName?: string; id: number; operation?: string; } export declare class HistoryEntry implements HistoryEntryInterface, Parameter { active?: boolean; dateTime?: string; fileName?: string; id: number; operation?: string; constructor(data: any); static getActiveDefault(): boolean; static getActiveDescription(): string; static getDateTimeDefault(): string; static getDateTimeDescription(): string; static getFileNameDefault(): string; static getFileNameDescription(): string; static getIdDefault(): number; static getIdDescription(): string; static getOperationDefault(): string; static getOperationDescription(): string; static fromJson(data: any): HistoryEntry; toJson(): any; clone(): HistoryEntry; }