@e-trias/woonplan 1.0.26 → 1.0.28
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 +26 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -391,8 +391,28 @@ export interface IHouseobject{
|
|
|
391
391
|
measuredatas ?: IMeasuredata[]
|
|
392
392
|
}
|
|
393
393
|
|
|
394
|
-
export interface
|
|
394
|
+
export interface IAbstractHouseObjectType{
|
|
395
|
+
deleted ?: boolean
|
|
396
|
+
id ?: string
|
|
397
|
+
sortorder ?: number
|
|
398
|
+
surface ?: number
|
|
399
|
+
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
export interface IFloortype extends IAbstractHouseObjectType{
|
|
403
|
+
lambda ?: number
|
|
404
|
+
rcvalue ?: number
|
|
405
|
+
}
|
|
395
406
|
|
|
407
|
+
export interface IRooftype extends IAbstractHouseObjectType{
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
export interface IWalltype extends IAbstractHouseObjectType{
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
export interface IFloor extends IHouseobject{
|
|
414
|
+
floortypeid ?: string
|
|
415
|
+
floortype ?: IFloortype
|
|
396
416
|
}
|
|
397
417
|
|
|
398
418
|
|
|
@@ -408,12 +428,16 @@ export interface IWall extends IHouseobject{
|
|
|
408
428
|
angle ?: number
|
|
409
429
|
side ?: ISide
|
|
410
430
|
sideid ?: string
|
|
431
|
+
walltypeid ?: string
|
|
432
|
+
walltype ?: IWalltype
|
|
411
433
|
}
|
|
412
434
|
|
|
413
435
|
|
|
414
436
|
export interface IRoof extends IHouseobject{
|
|
415
437
|
shadowpercentage ?: number
|
|
416
438
|
angle ?: number
|
|
439
|
+
rooftypeid ?: string
|
|
440
|
+
rooftype ?: IRooftype
|
|
417
441
|
}
|
|
418
442
|
export interface IWindowframe extends IHouseobject{
|
|
419
443
|
userdataid : string
|
|
@@ -445,11 +469,7 @@ export interface IWindowframepart extends IHouseobject{
|
|
|
445
469
|
windowframeid ?: string
|
|
446
470
|
}
|
|
447
471
|
|
|
448
|
-
export interface IWindowframetype{
|
|
449
|
-
id : string
|
|
450
|
-
name : string
|
|
451
|
-
deleted : boolean
|
|
452
|
-
sortorder : number
|
|
472
|
+
export interface IWindowframetype extends IAbstractHouseObjectType{
|
|
453
473
|
uvalue ?: number
|
|
454
474
|
}
|
|
455
475
|
|