23 lines
469 B
TypeScript
23 lines
469 B
TypeScript
import type { IPeeringDbBaseObject } from '../peeringdb.types.js';
|
|
|
|
/**
|
|
* IX Facility object from PeeringDB API
|
|
* Represents the connection between an Internet Exchange and a facility
|
|
*/
|
|
export interface IIxFac extends IPeeringDbBaseObject {
|
|
/** IxFac ID */
|
|
id: number;
|
|
|
|
/** Exchange ID */
|
|
ix_id: number;
|
|
|
|
/** Exchange object (when depth > 0) */
|
|
ix?: any;
|
|
|
|
/** Facility ID */
|
|
fac_id: number;
|
|
|
|
/** Facility object (when depth > 0) */
|
|
fac?: any;
|
|
}
|