esios-api-client
Version:
Another ESIOS api client
10 lines (9 loc) • 359 B
TypeScript
import { IPVPCDay } from "../../interfaces/pvpc/pvpc-day.interface";
import { PVPCDayZonedGeneral } from "./pvpc-day-zoned-general.class";
import { PVPCDayZonedSpecial } from "./pvpc-day-zoned-special.class";
export declare class PVPCDay {
date: Date;
general: PVPCDayZonedGeneral;
special: PVPCDayZonedSpecial;
constructor(date: IPVPCDay);
}