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

8 lines
181 B
TypeScript
Raw Normal View History

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