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

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