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

10 lines
201 B
TypeScript
Raw Normal View History

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