From 1d441b86d2910491aff68672fd513c329877df42 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Thu, 3 Oct 2019 17:13:17 -0700 Subject: [PATCH] plugin: Fix type bindings for instance Parent --- plugin/src/Types.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/Types.lua b/plugin/src/Types.lua index c3bea3a9..ff7d7267 100644 --- a/plugin/src/Types.lua +++ b/plugin/src/Types.lua @@ -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),