mirror of https://github.com/Hilbis/Hilbish
15 lines
395 B
Lua
15 lines
395 B
Lua
--- @meta
|
|
|
|
local commander = {}
|
|
|
|
--- Removes the named command. Note that this will only remove Commander-registered commands.
|
|
function commander.deregister(name) end
|
|
|
|
--- Adds a new command with the given `name`. When Hilbish has to run a command with a name,
|
|
--- it will run the function providing the arguments and sinks.
|
|
---
|
|
---
|
|
function commander.register(name, cb) end
|
|
|
|
return commander
|