inventory interface: add description for module.name

This commit is contained in:
DavHau
2025-06-24 15:13:27 +07:00
parent 2e403425f9
commit 7745e9eec6
2 changed files with 8 additions and 2 deletions

View File

@@ -15,12 +15,12 @@ class Unknown:
pass
InventoryInstanceModuleInputType = str
InventoryInstanceModuleNameType = str
InventoryInstanceModuleInputType = str
class InventoryInstanceModule(TypedDict):
name: str
input: NotRequired[InventoryInstanceModuleInputType]
name: NotRequired[InventoryInstanceModuleNameType]