From 3918bf785eceafd2372ccb8a959572399c17dfcb Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 16 Jun 2023 10:18:54 +0100 Subject: [PATCH] Make two properties optional --- project/src/models/eft/common/tables/ITemplateItem.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/src/models/eft/common/tables/ITemplateItem.ts b/project/src/models/eft/common/tables/ITemplateItem.ts index 9a9cb218..1f19e7ad 100644 --- a/project/src/models/eft/common/tables/ITemplateItem.ts +++ b/project/src/models/eft/common/tables/ITemplateItem.ts @@ -431,8 +431,8 @@ export interface Slot _props: SlotProps // eslint-disable-next-line @typescript-eslint/naming-convention _max_count?: number - _required: boolean - _mergeSlotWithChildren: boolean + _required?: boolean + _mergeSlotWithChildren?: boolean _proto: string }