mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
373 B
TypeScript
12 lines
373 B
TypeScript
// Type definitions for dev-ip 1.0
|
|
// Project: https://github.com/shakyshane/dev-ip
|
|
// Definitions by: Mike Engel <https://github.com/mike-engel>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/**
|
|
* Returns either an array of IP addresses or false if none can be found (offline, etc)
|
|
*/
|
|
declare function devIp(): string[] | boolean;
|
|
|
|
export = devIp;
|