Initial commit

This commit is contained in:
2024-12-16 13:13:08 +01:00
commit c8d4f32d5d
3093 changed files with 18304 additions and 0 deletions

14
api/type.lua Normal file
View File

@@ -0,0 +1,14 @@
---@diagnostic disable: missing-return, lowercase-global
---@param v value
---@return userdata typeString
---@return false boolean
---@return function
---@return nil nil
---@return number
---@return string
---@return table
---@return thread
---@return userdata
---Returns a string describing the data type of a value
function type(v) end