Pontonkid commited on
Commit
3f4ec2f
·
verified ·
1 Parent(s): cfd876c

Create type.ts

Browse files
Files changed (1) hide show
  1. type.ts +12 -0
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
+ }