Added missing type to iTemplateItem

This commit is contained in:
Dev 2024-07-07 14:07:53 +01:00
parent fba0f4703a
commit 7377a68a9e

View File

@ -483,6 +483,7 @@ export interface Slot
export interface SlotProps export interface SlotProps
{ {
filters: SlotFilter[] filters: SlotFilter[]
MaxStackCount?: number
} }
export interface SlotFilter export interface SlotFilter
@ -505,7 +506,7 @@ export interface StackSlot
_max_count: number _max_count: number
_props: StackSlotProps _props: StackSlotProps
_proto: string _proto: string
upd: any upd?: any
} }
export interface StackSlotProps export interface StackSlotProps