mirror of
https://github.com/sammy-ette/Hilbish
synced 2025-08-10 02:52:03 +00:00
12 lines
232 B
Lua
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
|