2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-06-24 21:32:03 +00:00
Hilbish/emmyLuaDocs/bait.lua
2022-02-25 22:15:49 +00:00

21 lines
468 B
Lua

--- @meta
local bait = {}
--- Catches a hook with `name`. Runs the `cb` when it is thrown
--- @param name string
--- @param cb function
function bait.catch(name, cb) end
--- Same as catch, but only runs the `cb` once and then removes the hook
--- @param name string
--- @param cb function
function bait.catchOnce(name, cb) end
--- Throws a hook with `name` with the provided `args`
--- @param name string
--- @vararg any
function bait.throw(name) end
return bait