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