// Type definitions for GeoIP-lite 1.1.6 // Project: https://github.com/bluesmoon/node-geoip // Definitions by: Yuce Tekol // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module 'geoip-lite' { module mod { export interface Lookup { range: Array; // range start, end country: string; region: string; city: string; ll: Array; // latitude, longitude } export function lookup(ip: string): Lookup; export function pretty(ip: number): string; export function startWatchingDataUpdate(): void; export function stopWatchingDataUpdate(): void; } export = mod; }