initial
This commit is contained in:
22
ts/interfaces/peeringdb.api.ixfac.ts
Normal file
22
ts/interfaces/peeringdb.api.ixfac.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user