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

9 lines
199 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;
2018-09-20 10:46:10 +00:00
raw?: string[];
2018-09-17 15:22:00 +00:00
}