@e-trias/woonplan 1.0.16 → 1.0.17
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/index.d.ts +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -396,10 +396,18 @@ export interface IFloor extends IHouseobject{
|
|
|
396
396
|
}
|
|
397
397
|
|
|
398
398
|
|
|
399
|
+
export interface ISide{
|
|
400
|
+
name : string
|
|
401
|
+
deleted : boolean
|
|
402
|
+
id : string
|
|
403
|
+
sortorder : number
|
|
404
|
+
}
|
|
405
|
+
|
|
399
406
|
export interface IWall extends IHouseobject{
|
|
400
407
|
shadowpercentage ?: number
|
|
401
408
|
angle ?: number
|
|
402
|
-
|
|
409
|
+
side ?: ISide
|
|
410
|
+
sideid ?: string
|
|
403
411
|
}
|
|
404
412
|
|
|
405
413
|
|