File size: 277 Bytes
3f4ec2f |
1 2 3 4 5 6 7 8 9 10 11 12 |
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;
} |