plugin: Fix type bindings for instance Parent

This commit is contained in:
Lucien Greathouse
2019-10-03 17:13:17 -07:00
parent b72e6e54e6
commit 1d441b86d2

View File

@@ -16,7 +16,7 @@ local ApiInstanceMetadata = t.interface({
local ApiInstance = t.interface({
Id = RbxId,
ParentId = t.optional(RbxId),
Parent = t.optional(RbxId),
Name = t.string,
ClassName = t.string,
Properties = t.map(t.string, ApiValue),