app/@overflow/model/ping/result.ts

8 lines
181 B
TypeScript
Raw Normal View History

2018-09-18 00:22:00 +09:00
import { PingResponse } from './response';
import { PingSummary } from './summary';
export interface PingResult {
responses: Map<number, PingResponse>;
summary: PingSummary;
}