import type { IcmpEntity } from './icmp-entity'; export interface IcmpEntityResult { name: string; ipAddress: string; stationCode: string; url: string; success: boolean; icmpEntities: IcmpEntity[]; errorMessage: string; }