mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
11 lines
156 B
TypeScript
11 lines
156 B
TypeScript
import * as internalIp from 'internal-ip';
|
|
|
|
let str: string;
|
|
internalIp.v6().then(ip => {
|
|
str = ip;
|
|
});
|
|
|
|
internalIp.v4().then(ip => {
|
|
str = ip;
|
|
});
|