Files
pole-book/server/node_modules/is-localhost-ip/index.d.ts

8 lines
220 B
TypeScript

/** Returns true if given parameter is local IP address or resolves into one, false otherwise */
declare async function isLocalhost(
addrOrHost: string,
canBind?: boolean,
): Promise<boolean>;
export = isLocalhost;