mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
29 lines
765 B
TypeScript
29 lines
765 B
TypeScript
![]() |
import { WindDirection } from "../../../models/enums/WindDirection";
|
||
|
|
||
|
export interface IWeatherData
|
||
|
{
|
||
|
acceleration: number;
|
||
|
time: string;
|
||
|
date: string;
|
||
|
weather?: IWeather
|
||
|
}
|
||
|
|
||
|
export interface IWeather
|
||
|
{
|
||
|
pressure: number;
|
||
|
temp: number;
|
||
|
fog: number;
|
||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||
|
rain_intensity: number;
|
||
|
rain: number;
|
||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||
|
wind_gustiness: number;
|
||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||
|
wind_direction: WindDirection;
|
||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||
|
wind_speed: number;
|
||
|
cloud: number;
|
||
|
time: string;
|
||
|
date: string;
|
||
|
timestamp: number;
|
||
|
}
|