UNPKG

pogo-data-generator

Version:
13 lines (12 loc) 372 B
import type { AllWeather } from '../typings/dataTypes'; import type { NiaMfObj } from '../typings/general'; import Masterfile from './Masterfile'; export default class Weather extends Masterfile { rawWeather: { [id: string]: number[]; }; parsedWeather: AllWeather; constructor(); buildWeather(): void; addWeather(object: NiaMfObj): void; }