@e-trias/woonplan 1.0.89 → 1.0.91
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 +21 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -134,6 +134,27 @@ export interface IUserdata{
|
|
|
134
134
|
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
interface IAnnualreport{
|
|
138
|
+
id : string
|
|
139
|
+
amount ?: string
|
|
140
|
+
type ?: string
|
|
141
|
+
year ?: string
|
|
142
|
+
occupants ?: string
|
|
143
|
+
}
|
|
144
|
+
interface IAveragecalcdata{
|
|
145
|
+
id : string
|
|
146
|
+
amount ?: string
|
|
147
|
+
occupants ?: string
|
|
148
|
+
profile ?: string
|
|
149
|
+
averagecalcdatatype ?: IAveragecalcdatatype
|
|
150
|
+
averagecalcdatatypeid ?: string
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
interface IAveragecalcdatatype{
|
|
154
|
+
id : string
|
|
155
|
+
averagecalcdatas ?: IAveragecalcdata[]
|
|
156
|
+
}
|
|
157
|
+
|
|
137
158
|
interface IOrientation extends ILogged{
|
|
138
159
|
|
|
139
160
|
}
|
|
@@ -747,7 +768,6 @@ interface IMeasure {
|
|
|
747
768
|
|
|
748
769
|
interface IMeasuretype{
|
|
749
770
|
id : string
|
|
750
|
-
name : string
|
|
751
771
|
measures ?: IMeasure[]
|
|
752
772
|
}
|
|
753
773
|
|