feat(history): add electricity price chart
This commit is contained in:
+6
-6
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user