mirror of https://github.com/Hilbis/Hilbish
docs: [ci] generate new docs
parent
3b6284bc7c
commit
44e2a458f5
|
@ -35,3 +35,5 @@ run(cmd) > Runs `cmd` in Hilbish's sh interpreter.
|
||||||
|
|
||||||
timeout(cb, time) > Runs the `cb` function after `time` in milliseconds
|
timeout(cb, time) > Runs the `cb` function after `time` in milliseconds
|
||||||
|
|
||||||
|
which(binName) > Searches for an executable called `binName` in the directories of $PATH
|
||||||
|
|
||||||
|
|
|
@ -65,4 +65,7 @@ function hilbish.run(cmd) end
|
||||||
--- @param time number
|
--- @param time number
|
||||||
function hilbish.timeout(cb, time) end
|
function hilbish.timeout(cb, time) end
|
||||||
|
|
||||||
|
--- Searches for an executable called `binName` in the directories of $PATH
|
||||||
|
function hilbish.which() end
|
||||||
|
|
||||||
return hilbish
|
return hilbish
|
||||||
|
|
Loading…
Reference in New Issue