dotfiles from arch
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
---@meta bee.thread
|
||||
|
||||
---@class bee.thread
|
||||
local thread = {}
|
||||
|
||||
---@param time number
|
||||
function thread.sleep(time) end
|
||||
|
||||
---@param name string
|
||||
function thread.newchannel(name) end
|
||||
|
||||
---@param name string
|
||||
---@return bee.thread.channel
|
||||
function thread.channel(name) end
|
||||
|
||||
---@param script string
|
||||
---@return bee.thread.thread
|
||||
function thread.thread(script) end
|
||||
|
||||
---@return string?
|
||||
function thread.errlog() end
|
||||
|
||||
---@class bee.thread.channel
|
||||
local channel = {}
|
||||
|
||||
function channel:push(...) end
|
||||
|
||||
---@return ...
|
||||
function channel:pop() end
|
||||
|
||||
---@return ...
|
||||
function channel:bpop() end
|
||||
|
||||
---@class bee.thread.thread
|
||||
|
||||
return thread
|
||||
Reference in New Issue
Block a user