@e-trias/woonplan 1.3.183 → 1.3.184
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types.d.ts +6 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1619,10 +1619,16 @@ export interface IUserdatahousewish{
|
|
|
1619
1619
|
|
|
1620
1620
|
type Fuel = "gas" | "electricity" | "heatnetwork" | "wood" | "oil" | "pellets"
|
|
1621
1621
|
|
|
1622
|
+
type Month = "jan" | "feb" | "mar" | "apr" | "may" | "jun" | "jul" | "aug" | "sep" | "okt" | "nov" | "dec"
|
|
1623
|
+
|
|
1622
1624
|
type FuelDistribution = {
|
|
1623
1625
|
[k in Fuel]: number
|
|
1624
1626
|
}
|
|
1625
1627
|
|
|
1628
|
+
type FuelDistributionPerMonth = {
|
|
1629
|
+
[k in Month]: FuelDistribution
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1626
1632
|
|
|
1627
1633
|
interface IEnergyconsumption extends FuelDistribution{
|
|
1628
1634
|
water : number
|