feat(history): add electricity price chart

This commit is contained in:
2026-08-02 15:52:22 +02:00
parent f70f3ab054
commit 029c29afd1
10 changed files with 137 additions and 20 deletions
+6 -6
View File
@@ -17,10 +17,10 @@ declare namespace App {
startDate: string;
endDate: string;
period: string;
marketPrice: number;
totalPriceTaxIncluded: number;
priceInclHandlingVat: number;
priceTaxWithVat: number;
marketPrice: number | null;
totalPriceTaxIncluded: number | null;
priceInclHandlingVat: number | null;
priceTaxWithVat: number | null;
startDateDatetime: string;
};
}
@@ -41,8 +41,8 @@ declare namespace App {
namespace History {
namespace Data {
export type HistoryData = {
electricity: Array<any>;
gas: Array<any>;
electricity: App.Data.ElectricityData[];
gas: App.Data.GasData[];
};
}
namespace Requests {
@@ -1,3 +1,3 @@
{
"generated.d.ts": "7ca8a9c7f0ae5e5498bdee87bb2f005d"
"generated.d.ts": "596cfad66b8ff3f8b6b98271630919ae"
}