8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
|
import { PingResponse } from './response';
|
||
|
import { PingSummary } from './summary';
|
||
|
|
||
|
export interface PingResult {
|
||
|
responses: Map<number, PingResponse>;
|
||
|
summary: PingSummary;
|
||
|
}
|