app/@overflow/model/ping/result.ts
crusader 46349fb178 ing
2018-09-18 00:22:00 +09:00

8 lines
181 B
TypeScript

import { PingResponse } from './response';
import { PingSummary } from './summary';
export interface PingResult {
responses: Map<number, PingResponse>;
summary: PingSummary;
}