UNPKG

node-test-bed-adapter

Version:

An adapter to connect a node.js application to the Test-bed's Common Information Space or Common Simulation Space.

7 lines (6 loc) 254 B
export interface IComputerInfo { hostname: string; localIP?: string; externalIP?: string; } export declare const computerInfo: (externalIP: string | undefined, cb: (data: IComputerInfo, err?: NodeJS.ErrnoException) => void) => Promise<void>;