add Object:is() to luals definition

This commit is contained in:
yuki 2025-11-10 03:50:49 -03:00
parent bd288099d2
commit 8aff822362

View file

@ -21,4 +21,9 @@ function Object:extend() end
---@param mixin table
function Object:implement(mixin) end
---Checks if object is of a specific type
---@param object Object
---@return boolean
function Object:is(object) end
return Object