UNPKG

pogo-data-generator

Version:
13 lines (12 loc) 401 B
import type { WeatherAffinities } from 'pogo-masterfile-types'; import type { AllWeather } from '../typings/dataTypes'; import Masterfile from './Masterfile'; export default class Weather extends Masterfile { rawWeather: { [id: string]: number[]; }; parsedWeather: AllWeather; constructor(); buildWeather(): void; addWeather(object: WeatherAffinities['data']): void; }