clothes / type.ts
Pontonkid's picture
Create type.ts
3f4ec2f verified
raw
history blame contribute delete
277 Bytes
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;
}