9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
export interface HttpAttemptTimes {
|
|
end: Date;
|
|
start: Date;
|
|
}
|
|
export declare const HttpAttemptTimesSerializer: {
|
|
_fromJsonObject(object: any): HttpAttemptTimes;
|
|
_toJsonObject(self: HttpAttemptTimes): any;
|
|
};
|