| export interface Weather { | |
| temperature: number; | |
| condition: 'Sunny' | 'Cloudy' | 'Rainy' | 'Snowy' | 'Windy' | 'Stormy'; | |
| humidity: number; | |
| description: string; | |
| location: string; | |
| } | |
| export interface OutfitSuggestion { | |
| outfit: string; | |
| laundry_alert: string | null; | |
| } |