UNPKG

local-devices

Version:

Find devices connected to the current local network.

16 lines (13 loc) 374 B
declare module "local-devices" { function findLocalDevices(opts?: { address?: any, skipNameResolution?: boolean, arpPath?: string }): Promise<findLocalDevices.IDevice[]>; namespace findLocalDevices { interface IDevice { name: string; ip: string; mac: string; } } export = findLocalDevices; }