@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
22 lines • 699 B
TypeScript
/** Informations directly get on DSLAM or Modem */
export interface ConnectionInformations {
/** Amount of CRC error detected */
crcError?: number;
/** Downstream attenuation */
downstreamAttenuation?: number;
/** Downstream margin */
downstreamMargin?: number;
/** Downstream synchronization */
downstreamSync?: number;
/** Modem interface name */
ifName?: string;
/** Profile on the DSLAM */
profile?: string;
/** Upstream attenuation */
upstreamAttenuation?: number;
/** Upstream margin */
upstreamMargin?: number;
/** Upstream synchronization */
upstreamSync?: number;
}
//# sourceMappingURL=ConnectionInformations.d.ts.map