mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 19:49:37 +02:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
|
import { Model } from './Api';
|
||
|
|
||
|
export interface Weather extends Model {
|
||
|
externalLastUpdate: string;
|
||
|
tempC: number;
|
||
|
tempF: number;
|
||
|
isDay: number;
|
||
|
conditionText: string;
|
||
|
conditionCode: number;
|
||
|
}
|