18 lines
287 B
TypeScript
18 lines
287 B
TypeScript
export interface Region {
|
|
id: string;
|
|
city: string;
|
|
country: string;
|
|
countryCode: string;
|
|
timezone?: string;
|
|
}
|
|
|
|
export interface GeoIpResponse {
|
|
city: string;
|
|
country: string;
|
|
countryCode: string;
|
|
region?: string;
|
|
timezone?: string;
|
|
lat?: number;
|
|
lon?: number;
|
|
}
|