app/@overflow/model/ping/result.ts
insanity 884fbcd36d ...
2018-09-20 19:46:10 +09:00

9 lines
199 B
TypeScript

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