Add mock WeatherProvider

This commit is contained in:
Matthew Oslan
2019-06-06 12:25:49 -04:00
parent d95f17950b
commit 69d08ed1b9
2 changed files with 39 additions and 1 deletions

View File

@@ -103,4 +103,4 @@ export interface WeatherProvider {
getWeatherData?( coordinates : GeoCoordinates ): Promise< WeatherData >;
}
export type WeatherProviderId = "OWM" | "DarkSky" | "local";
export type WeatherProviderId = "OWM" | "DarkSky" | "local" | "mock";