mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-25 22:09:36 +02:00
Created WeatherWidget
This commit is contained in:
parent
38f5d3b66a
commit
e170f56a03
11 changed files with 462 additions and 57 deletions
10
client/src/interfaces/Weather.ts
Normal file
10
client/src/interfaces/Weather.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
import { Model } from './Api';
|
||||
|
||||
export interface Weather extends Model {
|
||||
externalLastUpdate: string;
|
||||
tempC: number;
|
||||
tempF: number;
|
||||
isDay: number;
|
||||
conditionText: string;
|
||||
conditionCode: number;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue