29 lines
449 B
TypeScript
29 lines
449 B
TypeScript
export const WEATHER_DEFAULTS = {
|
|
weatherInfo: {
|
|
condition: null,
|
|
temperature: null,
|
|
humidity: null,
|
|
windSpeed: null,
|
|
},
|
|
forecasts: [
|
|
{
|
|
weatherInfo: {
|
|
condition: null,
|
|
temperature: null,
|
|
},
|
|
},
|
|
{
|
|
weatherInfo: {
|
|
condition: null,
|
|
temperature: null,
|
|
},
|
|
},
|
|
{
|
|
weatherInfo: {
|
|
condition: null,
|
|
temperature: null,
|
|
},
|
|
},
|
|
],
|
|
};
|