2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-07-03 17:52:02 +00:00
Hilbish/emmyLuaDocs/commander.lua
2022-02-25 22:00:39 +00:00

12 lines
232 B
Lua

--- @meta
local commander = {}
--- Deregisters any command registered with `name`
function commander.deregister() end
--- Register a command with `name` that runs `cb` when ran
function commander.register() end
return commander