diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2024-05-10 17:03:44 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2024-05-10 17:03:44 +0800 |
commit | 43e375b7dd2a9c4e8e3e02cca51f546e38d79b31 (patch) | |
tree | e5a4fade6b1f4dfaf0ebb235e329b093585a890b /script/meta | |
parent | c59bd7f4765a8016dfbbf3c8c9879387ca86acfd (diff) | |
download | lua-language-server-43e375b7dd2a9c4e8e3e02cca51f546e38d79b31.zip |
跟进修改
Diffstat (limited to 'script/meta')
-rw-r--r-- | script/meta/bee/thread.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/script/meta/bee/thread.lua b/script/meta/bee/thread.lua index 2cfbbdcf..15955aff 100644 --- a/script/meta/bee/thread.lua +++ b/script/meta/bee/thread.lua @@ -3,7 +3,7 @@ ---@class bee.thread local thread = {} ----@param time number +---@param time integer function thread.sleep(time) end ---@param name string @@ -15,7 +15,10 @@ function thread.channel(name) end ---@param script string ---@return bee.thread.thread -function thread.thread(script) end +function thread.create(script) end + +---@return string? +function thread.errlog() end ---@class bee.thread.channel local channel = {} |