@e-trias/woonplan 1.3.156 → 1.3.157
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 +11 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -278,6 +278,8 @@ export interface IUserdata{
|
|
|
278
278
|
preferessoundinsulating ?: boolean
|
|
279
279
|
forcerecalculation ?: boolean | null
|
|
280
280
|
|
|
281
|
+
experimentalfunctions ?: JSON
|
|
282
|
+
|
|
281
283
|
}
|
|
282
284
|
|
|
283
285
|
export interface IAnnualreport{
|
|
@@ -1646,6 +1648,15 @@ interface IUsage{
|
|
|
1646
1648
|
savingsfactor ?: number
|
|
1647
1649
|
}[]
|
|
1648
1650
|
}
|
|
1651
|
+
interface IUsageExtended extends IUsage{
|
|
1652
|
+
fuels : {
|
|
1653
|
+
warmwater : Fuel[]
|
|
1654
|
+
heating : Fuel[]
|
|
1655
|
+
cooking : Fuel[]
|
|
1656
|
+
household : Fuel[]
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1649
1660
|
interface ICosts{
|
|
1650
1661
|
id : string
|
|
1651
1662
|
gasstandingcharge ?: number
|