Create type.ts
Browse files
type.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export interface Weather {
|
| 2 |
+
temperature: number;
|
| 3 |
+
condition: 'Sunny' | 'Cloudy' | 'Rainy' | 'Snowy' | 'Windy' | 'Stormy';
|
| 4 |
+
humidity: number;
|
| 5 |
+
description: string;
|
| 6 |
+
location: string;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
export interface OutfitSuggestion {
|
| 10 |
+
outfit: string;
|
| 11 |
+
laundry_alert: string | null;
|
| 12 |
+
}
|