From 76e35a7427b364dee7dc822b21da415337dcc1d0 Mon Sep 17 00:00:00 2001 From: Shahar Mor Date: Sat, 16 Jun 2018 00:33:30 +0300 Subject: [PATCH] Add ISP & Connection databases info --- types/maxmind/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/maxmind/index.d.ts b/types/maxmind/index.d.ts index da45eb907b..c93c59a72a 100644 --- a/types/maxmind/index.d.ts +++ b/types/maxmind/index.d.ts @@ -68,6 +68,11 @@ export declare interface Response { readonly names: Translations; }; readonly postal?: { code: string }; + readonly isp?: { + readonly isp: string; + readonly autonomous_system_number: number; + }; + readonly connection?: { connection_type: string }; } export declare interface Translations {