@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
26 lines (25 loc) • 666 B
TypeScript
import { TimeFrameServerState, Parameter } from "./../index";
export interface StatisticInterface {
data?: {
[key: string]: {
[key: string]: TimeFrameServerState;
};
};
}
export declare class Statistic implements StatisticInterface, Parameter {
data?: {
[key: string]: {
[key: string]: TimeFrameServerState;
};
};
constructor(data: any);
static getDataDefault(): {
[key: string]: {
[key: string]: TimeFrameServerState;
};
};
static getDataDescription(): string;
static fromJson(data: any): Statistic;
toJson(): any;
clone(): Statistic;
}