@e-trias/woonplan 1.2.58 → 1.2.59
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 +9 -9
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -445,19 +445,19 @@ export interface IContent{
|
|
|
445
445
|
|
|
446
446
|
export interface IContentimage {
|
|
447
447
|
id: string
|
|
448
|
-
name?: string
|
|
449
|
-
deleted?: boolean
|
|
450
|
-
sortorder?: number
|
|
451
|
-
contentitem?: IContent
|
|
452
|
-
image
|
|
448
|
+
name?: string | null
|
|
449
|
+
deleted?: boolean | null
|
|
450
|
+
sortorder?: number | null
|
|
451
|
+
contentitem?: IContent | null
|
|
452
|
+
image?: IImage | null
|
|
453
453
|
}
|
|
454
454
|
|
|
455
455
|
export interface IImage {
|
|
456
456
|
id: string
|
|
457
|
-
path?: string
|
|
458
|
-
alt?: string
|
|
459
|
-
originalName?: string
|
|
460
|
-
contentimages?: IContentimage[]
|
|
457
|
+
path?: string | null
|
|
458
|
+
alt?: string | null
|
|
459
|
+
originalName?: string | null
|
|
460
|
+
contentimages?: IContentimage[] | null
|
|
461
461
|
}
|
|
462
462
|
|
|
463
463
|
export interface IMeasuretext{
|