Add geo info interface

This commit is contained in:
Alex Janka 2017-06-02 20:36:53 +10:00
parent 456531ae0e
commit 340829b6c9

8
ip_geo.ts Normal file
View file

@ -0,0 +1,8 @@
export interface IPGeoJson {
ip: string;
city: string;
region: string;
country: string;
loc: string;
postal: string;
}