Filter meteo warnings by local county
This commit is contained in:
@@ -112,6 +112,7 @@ export interface WeatherWarning {
|
||||
publishedAt: string | null;
|
||||
probability: number | null;
|
||||
areas: string[];
|
||||
terytCodes: string[];
|
||||
provinces: Province[];
|
||||
office: string | null;
|
||||
}
|
||||
|
||||
@@ -10,11 +10,14 @@ export interface LocationSearchResult {
|
||||
export interface ReverseLocationResult {
|
||||
name: string;
|
||||
province: string | null;
|
||||
district: string | null;
|
||||
}
|
||||
|
||||
export interface SelectedLocation {
|
||||
name: string;
|
||||
province: string | null;
|
||||
district: string | null;
|
||||
countyTeryt: string | null;
|
||||
latitude: number;
|
||||
longitude: number;
|
||||
stationId: string;
|
||||
|
||||
@@ -22,6 +22,7 @@ export interface WarningPushSubscription {
|
||||
latitude: number | null;
|
||||
longitude: number | null;
|
||||
locationName: string | null;
|
||||
countyTeryt: string | null;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user