11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
export interface EndpointStats {
|
|
fail: number;
|
|
pending: number;
|
|
sending: number;
|
|
success: number;
|
|
}
|
|
export declare const EndpointStatsSerializer: {
|
|
_fromJsonObject(object: any): EndpointStats;
|
|
_toJsonObject(self: EndpointStats): any;
|
|
};
|