@e-trias/woonplan 1.0.26 → 1.0.30
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 +41 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -391,8 +391,43 @@ 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
|
+
}
|
|
399
|
+
|
|
400
|
+
export interface IFloortype extends IAbstractHouseObjectType{
|
|
401
|
+
lambda ?: number
|
|
402
|
+
rcvalue ?: number
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
export interface IRooftype extends IAbstractHouseObjectType{
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
export interface IWalltype extends IAbstractHouseObjectType{
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
export interface ICrawlspace{
|
|
412
|
+
deleted ?: boolean
|
|
413
|
+
id ?: string
|
|
414
|
+
sortorder ?: number
|
|
415
|
+
accessible ?: boolean
|
|
416
|
+
pumpable ?: boolean
|
|
417
|
+
cluttered ?: boolean
|
|
418
|
+
height ?: number
|
|
419
|
+
wet ?: string
|
|
420
|
+
|
|
421
|
+
}
|
|
422
|
+
export interface ICrawlspaceinfloor{
|
|
423
|
+
floorid : ''
|
|
424
|
+
crawlspaceid : ''
|
|
425
|
+
}
|
|
395
426
|
|
|
427
|
+
export interface IFloor extends IHouseobject{
|
|
428
|
+
floortypeid ?: string
|
|
429
|
+
floortype ?: IFloortype
|
|
430
|
+
crawlspaces ?: ICrawlspace[]
|
|
396
431
|
}
|
|
397
432
|
|
|
398
433
|
|
|
@@ -408,12 +443,16 @@ export interface IWall extends IHouseobject{
|
|
|
408
443
|
angle ?: number
|
|
409
444
|
side ?: ISide
|
|
410
445
|
sideid ?: string
|
|
446
|
+
walltypeid ?: string
|
|
447
|
+
walltype ?: IWalltype
|
|
411
448
|
}
|
|
412
449
|
|
|
413
450
|
|
|
414
451
|
export interface IRoof extends IHouseobject{
|
|
415
452
|
shadowpercentage ?: number
|
|
416
453
|
angle ?: number
|
|
454
|
+
rooftypeid ?: string
|
|
455
|
+
rooftype ?: IRooftype
|
|
417
456
|
}
|
|
418
457
|
export interface IWindowframe extends IHouseobject{
|
|
419
458
|
userdataid : string
|
|
@@ -445,11 +484,7 @@ export interface IWindowframepart extends IHouseobject{
|
|
|
445
484
|
windowframeid ?: string
|
|
446
485
|
}
|
|
447
486
|
|
|
448
|
-
export interface IWindowframetype{
|
|
449
|
-
id : string
|
|
450
|
-
name : string
|
|
451
|
-
deleted : boolean
|
|
452
|
-
sortorder : number
|
|
487
|
+
export interface IWindowframetype extends IAbstractHouseObjectType{
|
|
453
488
|
uvalue ?: number
|
|
454
489
|
}
|
|
455
490
|
|