Updated _proto inside ITemplateItem nullable

Added `ItemType` enum for `_type` property in  `ITemplateItem`
This commit is contained in:
Dev 2024-05-27 13:59:25 +01:00
parent 82c6add9ab
commit edbb6cec19

View File

@ -5,9 +5,9 @@ export interface ITemplateItem
_id: string
_name: string
_parent: string
_type: string
_type: ItemType
_props: Props
_proto: string
_proto?: string
}
export interface Props
@ -573,3 +573,9 @@ export interface IShotsGroupSettings
ShotRecoilRotationStrength: Ixyz
StartShotIndex: number
}
export enum ItemType
{
NODE = "Node",
ITEM = "Item",
}