From 340829b6c982d8b5f65ca76a612a7902567a0591 Mon Sep 17 00:00:00 2001 From: Alex Janka Date: Fri, 2 Jun 2017 20:36:53 +1000 Subject: [PATCH] Add geo info interface --- ip_geo.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ip_geo.ts diff --git a/ip_geo.ts b/ip_geo.ts new file mode 100644 index 0000000..465e6e5 --- /dev/null +++ b/ip_geo.ts @@ -0,0 +1,8 @@ +export interface IPGeoJson { + ip: string; + city: string; + region: string; + country: string; + loc: string; + postal: string; +} \ No newline at end of file