UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

22 lines (21 loc) 717 B
import { Parameter } from "./../index"; export interface JavaStatusGCInterface { collectionCount?: number; collectionTime?: number; name?: string; } export declare class JavaStatusGC implements JavaStatusGCInterface, Parameter { collectionCount?: number; collectionTime?: number; name?: string; constructor(data: any); static getCollectionCountDefault(): number; static getCollectionCountDescription(): string; static getCollectionTimeDefault(): number; static getCollectionTimeDescription(): string; static getNameDefault(): string; static getNameDescription(): string; static fromJson(data: any): JavaStatusGC; toJson(): any; clone(): JavaStatusGC; }