1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 19:49:37 +02:00
flame/client/src/interfaces/Weather.ts

10 lines
205 B
TypeScript
Raw Normal View History

2021-05-19 18:26:57 +02:00
import { Model } from './Api';
export interface Weather extends Model {
externalLastUpdate: string;
tempC: number;
tempF: number;
isDay: number;
conditionText: string;
conditionCode: number;
}