plugin: Add Id and ParentId to ApiInstance type definitions

This commit is contained in:
Lucien Greathouse
2019-10-03 15:54:49 -07:00
parent 995685adfe
commit cf62ee5ccb

View File

@@ -15,6 +15,8 @@ local ApiInstanceMetadata = t.interface({
})
local ApiInstance = t.interface({
Id = RbxId,
ParentId = t.optional(RbxId),
Name = t.string,
ClassName = t.string,
Properties = t.map(t.string, ApiValue),